{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "83085d81", "metadata": {}, "outputs": [], "source": [ "from glob import glob\n", "import yt_dlp as youtube_dl\n", "import os\n", "from tqdm import tqdm\n", "\n", "ydl_opts = {\n", " 'format': 'bestaudio/best',\n", " 'postprocessors': [{\n", " 'key': 'FFmpegExtractAudio',\n", " 'preferredcodec': 'mp3',\n", " 'preferredquality': '128',\n", " }],\n", " 'no-check-certificate': True,\n", " 'quiet': True,\n", "}" ] }, { "cell_type": "code", "execution_count": 2, "id": "fd41d8fb", "metadata": {}, "outputs": [], "source": [ "import json\n", "\n", "files = glob('json/*.json')" ] }, { "cell_type": "code", "execution_count": 3, "id": "a848d172", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "60603" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "data = {}\n", "for f in files:\n", " with open(f) as fopen:\n", " data.update(json.load(fopen))\n", " \n", "len(data)" ] }, { "cell_type": "code", "execution_count": 4, "id": "2541236e", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "60601" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "urls = list(set(list(data.values())))\n", "len(urls)" ] }, { "cell_type": "code", "execution_count": 8, "id": "bc3ffdad", "metadata": {}, "outputs": [], "source": [ "audios = glob('audio/*.mp3')\n", "audios = set([os.path.split(f)[1] for f in audios])" ] }, { "cell_type": "code", "execution_count": 11, "id": "8e9f146c", "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "os.path.join" ] }, { "cell_type": "code", "execution_count": 19, "id": "e2825900", "metadata": {}, "outputs": [], "source": [ "def loop(rows):\n", " urls, _ = rows\n", " files = []\n", " \n", " with youtube_dl.YoutubeDL(ydl_opts) as ydl:\n", " for url in tqdm(urls):\n", " try:\n", " info = ydl.extract_info(url, download=False)\n", " filename = ydl.prepare_filename(info).replace('.m4a', '.mp3').replace('.webm', '.mp3')\n", " if filename in audios:\n", " files.append({\n", " 'url': url,\n", " 'filename': os.path.join('audio', filename)\n", " })\n", " except Exception as e:\n", " print(e)\n", " return files\n", " " ] }, { "cell_type": "code", "execution_count": 20, "id": "fd783561", "metadata": {}, "outputs": [], "source": [ "import mp" ] }, { "cell_type": "code", "execution_count": 23, "id": "4f2f4fee", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ " 0%|▎ | 3/1212 [00:04<28:28, 1.41s/it]ERROR: [youtube] li6uJ4-6fno: Private video. Sign in if you've been granted access to this video\n", " 0%|▎ | 3/1212 [00:04<28:13, 1.40s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] li6uJ4-6fno: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 0%|▎ | 4/1212 [00:05<28:46, 1.43s/it]ERROR: [youtube] AicLqihNhn8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] AicLqihNhn8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 0%|▎ | 4/1212 [00:05<29:34, 1.47s/it]ERROR: [youtube] Eg2VFNo2xMY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Eg2VFNo2xMY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 0%|▍ | 5/1212 [00:07<26:34, 1.32s/it]ERROR: [youtube] BjPFsRGbF7k: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] BjPFsRGbF7k: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 1%|▌ | 7/1212 [00:09<25:33, 1.27s/it]ERROR: [youtube] HFFRAZgzVYM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] HFFRAZgzVYM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 1%|█ | 12/1212 [00:17<34:04, 1.70s/it]ERROR: [youtube] 4gQJmnb9WSw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 4gQJmnb9WSw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 1%|█▎ | 15/1212 [00:20<29:31, 1.48s/it]ERROR: [youtube] Mx6xKazZmJ4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Mx6xKazZmJ4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 1%|█▍ | 16/1212 [00:21<27:06, 1.36s/it]ERROR: [youtube] ViXvjAYtHYo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ViXvjAYtHYo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 1%|█▌ | 18/1212 [00:24<27:23, 1.38s/it]ERROR: [youtube] KKoixX0AZGc: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] KKoixX0AZGc: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 2%|██▎ | 26/1212 [00:33<22:34, 1.14s/it]ERROR: [youtube] 0l86V7oIs_8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 0l86V7oIs_8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 2%|██▏ | 25/1212 [00:34<24:49, 1.25s/it]ERROR: [youtube] Zfg2_c5m18w: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Zfg2_c5m18w: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 2%|██ | 24/1212 [00:34<29:16, 1.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 2%|██▎ | 26/1212 [00:35<24:07, 1.22s/it]ERROR: [youtube] -fsA74BPE6U: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] -fsA74BPE6U: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 2%|██▎ | 26/1212 [00:35<23:26, 1.19s/it]ERROR: [youtube] HE_7bNY0NXc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] HE_7bNY0NXc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 2%|██▋ | 30/1212 [00:41<24:32, 1.25s/it]ERROR: [youtube] W3fgt0o-1Zs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] W3fgt0o-1Zs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 3%|██▋ | 31/1212 [00:43<29:46, 1.51s/it]ERROR: [youtube] KB-ADhvv_bA: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] KB-ADhvv_bA: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 3%|██▉ | 33/1212 [00:47<26:21, 1.34s/it]ERROR: [youtube] GOyF2VoRHvg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] GOyF2VoRHvg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 3%|███ | 35/1212 [00:48<26:16, 1.34s/it]ERROR: [youtube] Ovg1UOxz2pY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Ovg1UOxz2pY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 3%|███ | 35/1212 [00:49<25:52, 1.32s/it]ERROR: [youtube] RCTPgsvbXdU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] RCTPgsvbXdU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 3%|███▌ | 40/1212 [00:51<21:56, 1.12s/it]ERROR: [youtube] dMTplnNjxNg: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] dMTplnNjxNg: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 3%|███▎ | 38/1212 [00:52<30:32, 1.56s/it]ERROR: [youtube] 6LWQmMe5C3A: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 6LWQmMe5C3A: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 3%|███▎ | 37/1212 [00:53<28:46, 1.47s/it]ERROR: [youtube] -4gh0e1WSm0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] -4gh0e1WSm0: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 3%|███▌ | 40/1212 [00:53<26:00, 1.33s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 4%|███▉ | 45/1212 [00:59<26:00, 1.34s/it]ERROR: [youtube] kjm2xsiqonI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] kjm2xsiqonI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 3%|███▋ | 42/1212 [00:59<25:21, 1.30s/it]ERROR: [youtube] hyO1gMJ7d5E: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] hyO1gMJ7d5E: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 4%|███▉ | 45/1212 [01:02<26:14, 1.35s/it]ERROR: [youtube] rBUjSsIsi8I: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] rBUjSsIsi8I: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 4%|████ | 46/1212 [01:05<28:54, 1.49s/it]ERROR: [youtube] 3a0knK9S-5k: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 3a0knK9S-5k: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 4%|████▍ | 50/1212 [01:08<27:56, 1.44s/it]ERROR: [youtube] Rs7eWVypBzw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Rs7eWVypBzw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 4%|████▋ | 53/1212 [01:10<24:46, 1.28s/it]ERROR: [youtube] Gca3YwgeUus: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Gca3YwgeUus: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 5%|█████ | 58/1212 [01:21<29:56, 1.56s/it]ERROR: [youtube] _ZW_OcWCqCY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] _ZW_OcWCqCY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 6%|██████▍ | 73/1212 [01:39<25:43, 1.36s/it]ERROR: [youtube] ktk56psOMJ0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ktk56psOMJ0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 6%|██████▌ | 74/1212 [01:40<22:50, 1.20s/it]ERROR: [youtube] Q-WAEcBsXc4: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Q-WAEcBsXc4: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 6%|██████▊ | 77/1212 [01:40<22:11, 1.17s/it]ERROR: [youtube] OJ2XbpiwlXI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] OJ2XbpiwlXI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 6%|██████▊ | 77/1212 [01:42<23:21, 1.24s/it]ERROR: [youtube] CfHXN5sTQ2E: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] CfHXN5sTQ2E: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 6%|██████▌ | 75/1212 [01:44<31:01, 1.64s/it]ERROR: [youtube] zTKPfI515PQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] zTKPfI515PQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 6%|██████▉ | 78/1212 [01:44<31:28, 1.67s/it]ERROR: [youtube] c_pThABPRSo: Private video. Sign in if you've been granted access to this video\n", " 6%|██████▉ | 78/1212 [01:44<23:43, 1.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] c_pThABPRSo: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 6%|██████▋ | 76/1212 [01:44<26:51, 1.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 6%|██████▉ | 78/1212 [01:48<30:57, 1.64s/it]ERROR: [youtube] f5-y7q4MCZE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] f5-y7q4MCZE: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 6%|██████▉ | 78/1212 [01:48<27:57, 1.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 7%|███████▍ | 84/1212 [01:51<22:37, 1.20s/it]ERROR: [youtube] 5UISkrF55Lc: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 5UISkrF55Lc: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 7%|███████▏ | 82/1212 [01:51<29:27, 1.56s/it]ERROR: [youtube] e728dDuCmrk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] e728dDuCmrk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 7%|███████▏ | 81/1212 [01:58<32:16, 1.71s/it]ERROR: [youtube] iNuHYuaaLY8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] iNuHYuaaLY8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 8%|████████▍ | 95/1212 [02:08<25:52, 1.39s/it]ERROR: [youtube] v2ADGoqEW48: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] v2ADGoqEW48: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 8%|████████▋ | 99/1212 [02:16<24:01, 1.29s/it]ERROR: [youtube] hD2zbH2fbQ0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] hD2zbH2fbQ0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 9%|█████████▍ | 108/1212 [02:23<25:21, 1.38s/it]ERROR: [youtube] WcPzSY6-l6k: Sign in to confirm your age. This video may be inappropriate for some users.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] WcPzSY6-l6k: Sign in to confirm your age. This video may be inappropriate for some users.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 8%|█████████ | 103/1212 [02:24<32:58, 1.78s/it]ERROR: [youtube] EP4NWbyUyx0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] EP4NWbyUyx0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 9%|█████████▎ | 107/1212 [02:29<23:56, 1.30s/it]ERROR: [youtube] lbSfACTLccY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] lbSfACTLccY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 9%|█████████▋ | 111/1212 [02:29<23:23, 1.27s/it]ERROR: [youtube] RotTVsvDkCU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] RotTVsvDkCU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 9%|█████████▌ | 109/1212 [02:30<24:12, 1.32s/it]ERROR: [youtube] eA_b8rF3c4E: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] eA_b8rF3c4E: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 9%|█████████▉ | 113/1212 [02:32<26:03, 1.42s/it]ERROR: [youtube] hgulouQ4tHU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] hgulouQ4tHU: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 9%|█████████▌ | 110/1212 [02:32<23:40, 1.29s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 9%|█████████▉ | 114/1212 [02:34<23:26, 1.28s/it]ERROR: [youtube] 8QcbLT-2ThA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 8QcbLT-2ThA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 10%|██████████▏ | 116/1212 [02:42<24:25, 1.34s/it]ERROR: [youtube] aZNcupjbKxA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] aZNcupjbKxA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 10%|██████████▏ | 116/1212 [02:43<26:11, 1.43s/it]ERROR: [youtube] 3zNms56BVqY: Private video. Sign in if you've been granted access to this video\n", " 10%|██████████▎ | 118/1212 [02:43<26:23, 1.45s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 3zNms56BVqY: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 10%|██████████▍ | 120/1212 [02:43<27:54, 1.53s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 10%|██████████▌ | 121/1212 [02:49<30:11, 1.66s/it]ERROR: [youtube] vo-g-wFEz8Y: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] vo-g-wFEz8Y: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 11%|███████████▍ | 131/1212 [02:52<23:38, 1.31s/it]ERROR: [youtube] UjrDX9pt8zY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] UjrDX9pt8zY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 10%|███████████ | 127/1212 [02:52<23:17, 1.29s/it]ERROR: [youtube] QQWDax4fNXY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] QQWDax4fNXY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 11%|███████████▍ | 131/1212 [02:59<22:06, 1.23s/it]ERROR: [youtube] eflrZGBEr8M: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] eflrZGBEr8M: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 11%|███████████▎ | 130/1212 [03:07<27:05, 1.50s/it]ERROR: [youtube] GEeC4fF9SOE: Private video. Sign in if you've been granted access to this video\n", " 11%|███████████▊ | 135/1212 [03:07<23:39, 1.32s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] GEeC4fF9SOE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 12%|████████████▎ | 141/1212 [03:08<22:55, 1.28s/it]ERROR: [youtube] p1dEk8BbSm8: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] p1dEk8BbSm8: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 12%|████████████▏ | 140/1212 [03:10<22:33, 1.26s/it]ERROR: [youtube] zXPxfsQtmlE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] zXPxfsQtmlE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 11%|███████████▊ | 135/1212 [03:11<23:13, 1.29s/it]ERROR: [youtube] ToglBbbrUGo: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ToglBbbrUGo: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 12%|████████████▋ | 145/1212 [03:17<21:32, 1.21s/it]ERROR: [youtube] LsPnFx2tL6Y: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] LsPnFx2tL6Y: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 12%|████████████▊ | 147/1212 [03:18<21:32, 1.21s/it]ERROR: [youtube] Mdai0HVRBq8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Mdai0HVRBq8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 12%|█████████████ | 150/1212 [03:19<22:44, 1.28s/it]ERROR: [youtube] Yn3FCytiviQ: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Yn3FCytiviQ: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 13%|█████████████▋ | 156/1212 [03:22<21:07, 1.20s/it]ERROR: [youtube] emt7mQjOjQ4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] emt7mQjOjQ4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 12%|█████████████ | 149/1212 [03:23<21:04, 1.19s/it]ERROR: [youtube] 72hKlAjWOqU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 72hKlAjWOqU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 12%|█████████████ | 150/1212 [03:26<26:08, 1.48s/it]ERROR: [youtube] BwAWfGtB4wM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] BwAWfGtB4wM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 12%|█████████████▏ | 151/1212 [03:32<24:44, 1.40s/it]ERROR: [youtube] 4ESyqdDteqA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 4ESyqdDteqA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 13%|█████████████▍ | 153/1212 [03:34<22:25, 1.27s/it]ERROR: [youtube] FWFwwcEqMFw: Video unavailable\n", " 13%|█████████████▌ | 155/1212 [03:34<26:29, 1.50s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] FWFwwcEqMFw: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 13%|██████████████▏ | 162/1212 [03:44<20:49, 1.19s/it]ERROR: [youtube] 4loNjkjxheM: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 4loNjkjxheM: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 14%|██████████████▊ | 169/1212 [03:49<21:09, 1.22s/it]ERROR: [youtube] _vL34vb_hLU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] _vL34vb_hLU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 13%|█████████████▉ | 160/1212 [03:51<24:02, 1.37s/it]ERROR: [youtube] pmsm9HrKn98: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] pmsm9HrKn98: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 15%|███████████████▍ | 176/1212 [03:55<19:41, 1.14s/it]ERROR: [youtube] Zy9ufZu-aNs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Zy9ufZu-aNs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 15%|███████████████▍ | 176/1212 [03:55<20:31, 1.19s/it]ERROR: [youtube] fjzOnoQTnWM: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] fjzOnoQTnWM: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 15%|███████████████▍ | 176/1212 [03:57<24:05, 1.39s/it]ERROR: [youtube] r4d2Gn-Rqvo: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] r4d2Gn-Rqvo: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 15%|███████████████▌ | 178/1212 [03:58<17:56, 1.04s/it]ERROR: [youtube] fnCoRVS5eb8: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] fnCoRVS5eb8: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 15%|███████████████▍ | 176/1212 [04:03<23:56, 1.39s/it]ERROR: [youtube] bmyD_R5kXxU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] bmyD_R5kXxU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 15%|███████████████▋ | 179/1212 [04:04<21:08, 1.23s/it]ERROR: [youtube] _LPnUTmpZQk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] _LPnUTmpZQk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 15%|███████████████▌ | 178/1212 [04:07<25:01, 1.45s/it]ERROR: [youtube] iW9f725RsNA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] iW9f725RsNA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 15%|████████████████ | 183/1212 [04:11<21:04, 1.23s/it]ERROR: [youtube] WaXp--SQ4cs: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] WaXp--SQ4cs: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 15%|████████████████ | 184/1212 [04:14<30:45, 1.80s/it]ERROR: [youtube] uK4MSMErefY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] uK4MSMErefY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 16%|████████████████▌ | 190/1212 [04:16<20:55, 1.23s/it]ERROR: [youtube] zDTH1f3N0JA: Video unavailable. This video is no longer available due to a copyright claim by CJ ENM\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] zDTH1f3N0JA: Video unavailable. This video is no longer available due to a copyright claim by CJ ENM" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 16%|████████████████▊ | 192/1212 [04:16<20:27, 1.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 15%|████████████████ | 184/1212 [04:17<22:47, 1.33s/it]ERROR: [youtube] nMhnDfm-pHQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] nMhnDfm-pHQ: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 15%|████████████████▎ | 187/1212 [04:17<23:20, 1.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 17%|█████████████████▌ | 201/1212 [04:17<22:01, 1.31s/it]ERROR: [youtube] sRm8xgDoHFM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] sRm8xgDoHFM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 16%|████████████████▉ | 193/1212 [04:23<24:00, 1.41s/it]ERROR: [youtube] D8aji5Dw3wY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] D8aji5Dw3wY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 16%|█████████████████▍ | 199/1212 [04:33<19:57, 1.18s/it]ERROR: [youtube] _cZkJxa-fx0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] _cZkJxa-fx0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 18%|██████████████████▉ | 216/1212 [04:35<19:39, 1.18s/it]ERROR: [youtube] 97KugNnwFeI: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 97KugNnwFeI: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 17%|██████████████████▏ | 208/1212 [04:37<21:06, 1.26s/it]ERROR: [youtube] -MSKqq9tTiY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] -MSKqq9tTiY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 17%|██████████████████ | 206/1212 [04:38<23:37, 1.41s/it]ERROR: [youtube] jOLjrearphU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] jOLjrearphU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 17%|██████████████████ | 206/1212 [04:38<19:20, 1.15s/it]ERROR: [youtube] n5KvBvjIA6o: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] n5KvBvjIA6o: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 17%|██████████████████ | 207/1212 [04:41<22:25, 1.34s/it]ERROR: [youtube] ErCBzB5aaHw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ErCBzB5aaHw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 17%|██████████████████▎ | 210/1212 [04:45<24:02, 1.44s/it]ERROR: [youtube] eyjX6PT8B5I: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] eyjX6PT8B5I: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 17%|██████████████████▍ | 211/1212 [04:45<22:53, 1.37s/it]ERROR: [youtube] uTD7EIuFXps: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] uTD7EIuFXps: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 17%|██████████████████▎ | 209/1212 [04:47<26:52, 1.61s/it]ERROR: [youtube] 1sKG4NihAKU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 1sKG4NihAKU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 17%|██████████████████▎ | 209/1212 [04:50<21:55, 1.31s/it]ERROR: [youtube] n_L8cLQ7Mx0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] n_L8cLQ7Mx0: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 18%|██████████████████▋ | 213/1212 [04:50<25:18, 1.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 17%|██████████████████▍ | 211/1212 [04:56<27:16, 1.64s/it]ERROR: [youtube] hhWD5Amqo7I: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] hhWD5Amqo7I: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 18%|███████████████████▌ | 224/1212 [04:58<22:52, 1.39s/it]ERROR: [youtube] 6dlxn4JzNfA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 6dlxn4JzNfA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 18%|███████████████████▌ | 224/1212 [04:58<18:41, 1.14s/it]ERROR: [youtube] AeLNS8PaCLU: Video unavailable. This video contains content from PT FALCON INTERACTIVE (Indonesia), who has blocked it on copyright grounds\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] AeLNS8PaCLU: Video unavailable. This video contains content from PT FALCON INTERACTIVE (Indonesia), who has blocked it on copyright grounds\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 18%|███████████████████ | 218/1212 [04:59<19:32, 1.18s/it]ERROR: [youtube] wTOiVGCqpwE: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] wTOiVGCqpwE: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 19%|███████████████████▋ | 225/1212 [05:11<21:14, 1.29s/it]ERROR: [youtube] cNOQKCxDsFM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] cNOQKCxDsFM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 19%|████████████████████ | 230/1212 [05:14<24:57, 1.52s/it]ERROR: [youtube] 8JsvtkxYxTw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 8JsvtkxYxTw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 19%|████████████████████▋ | 236/1212 [05:30<51:24, 3.16s/it]ERROR: [youtube] Ht0gCL8Q5JU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Ht0gCL8Q5JU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 20%|█████████████████████▋ | 248/1212 [05:35<32:09, 2.00s/it]ERROR: [youtube] 7r4MnH4VnR0: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 7r4MnH4VnR0: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 20%|█████████████████████▎ | 244/1212 [05:39<22:01, 1.36s/it]ERROR: [youtube] vUyX3Avl1rs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] vUyX3Avl1rs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 20%|█████████████████████▏ | 242/1212 [05:39<21:13, 1.31s/it]ERROR: [youtube] v90yqB6xBow: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] v90yqB6xBow: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 20%|█████████████████████▌ | 247/1212 [05:46<18:45, 1.17s/it]ERROR: [youtube] VC1KjPOaAzc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] VC1KjPOaAzc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 21%|██████████████████████▏ | 253/1212 [05:47<19:09, 1.20s/it]ERROR: [youtube] xnaDqcNpd_E: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] xnaDqcNpd_E: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 21%|██████████████████████▌ | 258/1212 [05:55<22:25, 1.41s/it]ERROR: [youtube] LpvVgIbJl_k: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] LpvVgIbJl_k: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 21%|██████████████████████▎ | 255/1212 [05:57<21:36, 1.35s/it]ERROR: [youtube] J4No3eUYAzI: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] J4No3eUYAzI: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 21%|██████████████████████▍ | 257/1212 [05:58<21:57, 1.38s/it]ERROR: [youtube] 1WSH3ZXkr5w: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 1WSH3ZXkr5w: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 21%|██████████████████████▋ | 260/1212 [06:02<28:25, 1.79s/it]ERROR: [youtube] T3-6qNRB6TM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] T3-6qNRB6TM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 23%|████████████████████████▏ | 276/1212 [06:16<20:52, 1.34s/it]ERROR: [youtube] A6wW1cN6AC4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] A6wW1cN6AC4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 23%|███████████████████████▉ | 273/1212 [06:20<21:40, 1.38s/it]ERROR: [youtube] rGGQjovslp4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] rGGQjovslp4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 23%|███████████████████████▉ | 274/1212 [06:21<25:22, 1.62s/it]ERROR: [youtube] kdACHsU3Pdg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] kdACHsU3Pdg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 23%|████████████████████████▋ | 282/1212 [06:23<19:32, 1.26s/it]ERROR: [youtube] D0qsR0U3FJM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] D0qsR0U3FJM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 23%|████████████████████████▍ | 280/1212 [06:32<21:28, 1.38s/it]ERROR: [youtube] 71EDjOw1DYQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 71EDjOw1DYQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 24%|█████████████████████████▏ | 288/1212 [06:35<21:06, 1.37s/it]ERROR: [youtube] YOoyyEt3rFU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] YOoyyEt3rFU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 24%|█████████████████████████ | 286/1212 [06:36<21:01, 1.36s/it]ERROR: [youtube] re8W-wKuYSc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] re8W-wKuYSc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 25%|██████████████████████████▏ | 300/1212 [06:39<21:51, 1.44s/it]ERROR: [youtube] SGP6vbHMIwY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] SGP6vbHMIwY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 24%|█████████████████████████▎ | 290/1212 [06:45<25:19, 1.65s/it]ERROR: [youtube] TPPPDx2u9qs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] TPPPDx2u9qs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 24%|█████████████████████████▉ | 296/1212 [06:52<20:33, 1.35s/it]ERROR: [youtube] Lwty3ygcgVw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Lwty3ygcgVw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 26%|███████████████████████████▎ | 313/1212 [07:06<21:38, 1.44s/it]ERROR: [youtube] KznEYyi8KJw: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] KznEYyi8KJw: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 26%|███████████████████████████▍ | 314/1212 [07:09<19:21, 1.29s/it]ERROR: [youtube] cbc-H5I-qpg: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n", " 25%|██████████████████████████▌ | 304/1212 [07:09<30:05, 1.99s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] cbc-H5I-qpg: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 25%|███████████████████████████ | 309/1212 [07:10<20:28, 1.36s/it]ERROR: [youtube] Kf6OBdAxXGM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Kf6OBdAxXGM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 26%|███████████████████████████▎ | 313/1212 [07:16<21:56, 1.46s/it]ERROR: [youtube] 6GzxJvql8ds: Private video. Sign in if you've been granted access to this video\n", " 26%|████████████████████████████ | 321/1212 [07:16<20:16, 1.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 6GzxJvql8ds: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 26%|███████████████████████████▋ | 316/1212 [07:19<23:01, 1.54s/it]ERROR: [youtube] yXeFA_trUFc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] yXeFA_trUFc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 26%|███████████████████████████▍ | 314/1212 [07:20<20:41, 1.38s/it]ERROR: [youtube] A1yCfjggu20: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] A1yCfjggu20: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 27%|████████████████████████████▌ | 327/1212 [07:35<19:23, 1.32s/it]ERROR: [youtube] uLuK2DbdBdI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] uLuK2DbdBdI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 27%|█████████████████████████████ | 332/1212 [07:36<20:07, 1.37s/it]ERROR: [youtube] dPSOTggvtHw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] dPSOTggvtHw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 27%|████████████████████████████▋ | 328/1212 [07:38<24:36, 1.67s/it]ERROR: [youtube] oKYR9k_7UG8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] oKYR9k_7UG8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 27%|████████████████████████████▋ | 328/1212 [07:41<19:35, 1.33s/it]ERROR: [youtube] WkNUv0_Ms7M: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] WkNUv0_Ms7M: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 28%|█████████████████████████████▊ | 341/1212 [07:42<16:52, 1.16s/it]ERROR: [youtube] a0jM1zK6GOY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] a0jM1zK6GOY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 27%|████████████████████████████▊ | 330/1212 [07:43<18:41, 1.27s/it]ERROR: [youtube] OBls2TLWh2w: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] OBls2TLWh2w: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 27%|█████████████████████████████ | 333/1212 [07:43<20:17, 1.38s/it]ERROR: [youtube] O_LOMdmI_eM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] O_LOMdmI_eM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 28%|█████████████████████████████▌ | 338/1212 [07:44<17:55, 1.23s/it]ERROR: [youtube] AWdxsuXVSeY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] AWdxsuXVSeY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 28%|█████████████████████████████▏ | 334/1212 [07:48<19:46, 1.35s/it]ERROR: [youtube] ghNpv8fmPAk: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ghNpv8fmPAk: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 29%|██████████████████████████████▊ | 353/1212 [07:50<18:30, 1.29s/it]ERROR: [youtube] B7UXQtUGv4s: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] B7UXQtUGv4s: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 27%|████████████████████████████▊ | 329/1212 [07:51<22:29, 1.53s/it]ERROR: [youtube] yFavi8ogpTQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] yFavi8ogpTQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 29%|██████████████████████████████▍ | 348/1212 [07:51<19:26, 1.35s/it]ERROR: [youtube] NvCHDB3rI3E: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] NvCHDB3rI3E: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 29%|██████████████████████████████▎ | 346/1212 [07:53<19:37, 1.36s/it]ERROR: [youtube] RJts9QRE8RE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] RJts9QRE8RE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 29%|██████████████████████████████▎ | 346/1212 [07:58<19:12, 1.33s/it]ERROR: [youtube] XVjxQJ8rD-s: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] XVjxQJ8rD-s: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 29%|███████████████████████████████▏ | 357/1212 [08:03<19:17, 1.35s/it]ERROR: [youtube] -LMgdzG9vfY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] -LMgdzG9vfY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 29%|██████████████████████████████▌ | 350/1212 [08:04<21:10, 1.47s/it]ERROR: [youtube] 2eIrlkVKZ9o: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 2eIrlkVKZ9o: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 29%|██████████████████████████████▊ | 353/1212 [08:05<24:48, 1.73s/it]ERROR: [youtube] 7RLSn54Tgms: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 7RLSn54Tgms: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 30%|███████████████████████████████▍ | 360/1212 [08:07<19:51, 1.40s/it]ERROR: [youtube] hasE1UuW3uM: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] hasE1UuW3uM: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 29%|███████████████████████████████▏ | 357/1212 [08:10<18:50, 1.32s/it]ERROR: [youtube] x7i2k3Wxowc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] x7i2k3Wxowc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 30%|████████████████████████████████ | 366/1212 [08:11<18:34, 1.32s/it]ERROR: [youtube] eCT3FvZ7Ows: Private video. Sign in if you've been granted access to this video\n", " 29%|███████████████████████████████▏ | 357/1212 [08:12<19:22, 1.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] eCT3FvZ7Ows: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 30%|███████████████████████████████▌ | 361/1212 [08:13<17:34, 1.24s/it]ERROR: [youtube] B1aL95NR_H4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] B1aL95NR_H4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 29%|███████████████████████████████▏ | 357/1212 [08:17<19:13, 1.35s/it]ERROR: [youtube] HmOFcOwdf48: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] HmOFcOwdf48: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 30%|███████████████████████████████▎ | 358/1212 [08:25<19:23, 1.36s/it]ERROR: [youtube] g8IPI8x6j0A: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] g8IPI8x6j0A: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 31%|████████████████████████████████▍ | 371/1212 [08:26<16:03, 1.15s/it]ERROR: [youtube] IhWpI9Lr6lE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] IhWpI9Lr6lE: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 30%|████████████████████████████████ | 367/1212 [08:26<19:16, 1.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 31%|█████████████████████████████████▏ | 379/1212 [08:28<17:38, 1.27s/it]ERROR: [youtube] nvP2gG97-bk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] nvP2gG97-bk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 30%|███████████████████████████████▊ | 364/1212 [08:32<17:17, 1.22s/it]ERROR: [youtube] VceNTNn0R50: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] VceNTNn0R50: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 30%|████████████████████████████████ | 366/1212 [08:33<19:30, 1.38s/it]ERROR: [youtube] 3vxfODJ1oh8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 3vxfODJ1oh8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 31%|████████████████████████████████▌ | 372/1212 [08:33<18:44, 1.34s/it]ERROR: [youtube] xxqyI7gTd5s: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] xxqyI7gTd5s: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 31%|████████████████████████████████▊ | 375/1212 [08:34<16:09, 1.16s/it]ERROR: [youtube] 4hGmvByqX3M: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 4hGmvByqX3M: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 31%|█████████████████████████████████▎ | 381/1212 [08:35<19:33, 1.41s/it]ERROR: [youtube] GI3qCiuWS-k: Private video. Sign in if you've been granted access to this video\n", " 30%|███████████████████████████████▉ | 365/1212 [08:35<19:17, 1.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] GI3qCiuWS-k: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 31%|████████████████████████████████▉ | 376/1212 [08:35<21:46, 1.56s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 32%|█████████████████████████████████▍ | 382/1212 [08:36<17:00, 1.23s/it]ERROR: [youtube] 27GWfv0i7oQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 27GWfv0i7oQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 31%|█████████████████████████████████▏ | 379/1212 [08:37<20:34, 1.48s/it]ERROR: [youtube] VZbh3pb98W4: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] VZbh3pb98W4: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 31%|████████████████████████████████▌ | 372/1212 [08:40<18:33, 1.33s/it]ERROR: [youtube] AG5g8xAVN9Y: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] AG5g8xAVN9Y: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 32%|██████████████████████████████████ | 389/1212 [08:49<18:13, 1.33s/it]ERROR: [youtube] xJTc3qURDqY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] xJTc3qURDqY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 32%|██████████████████████████████████▏ | 391/1212 [08:53<21:46, 1.59s/it]ERROR: [youtube] ay5JR50Y-4s: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ay5JR50Y-4s: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 33%|███████████████████████████████████ | 401/1212 [09:08<17:02, 1.26s/it]ERROR: [youtube] jwhzp8JfxQc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] jwhzp8JfxQc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 33%|███████████████████████████████████▏ | 402/1212 [09:09<16:24, 1.22s/it]ERROR: [youtube] K7m7JpXeELM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] K7m7JpXeELM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 33%|██████████████████████████████████▋ | 396/1212 [09:09<18:07, 1.33s/it]ERROR: [youtube] m6s32h6Kvq0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] m6s32h6Kvq0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 33%|███████████████████████████████████▍ | 405/1212 [09:10<16:50, 1.25s/it]ERROR: [youtube] lAvUT07UIr4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] lAvUT07UIr4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 32%|██████████████████████████████████▎ | 393/1212 [09:15<21:00, 1.54s/it]ERROR: [youtube] CQYAwpg-iJg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] CQYAwpg-iJg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 33%|██████████████████████████████████▉ | 399/1212 [09:24<20:17, 1.50s/it]ERROR: [youtube] voG-_cvFS6g: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] voG-_cvFS6g: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 34%|████████████████████████████████████▎ | 415/1212 [09:25<17:48, 1.34s/it]ERROR: [youtube] 93l2sfAmHDY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 93l2sfAmHDY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 33%|███████████████████████████████████▏ | 402/1212 [09:27<20:03, 1.49s/it]ERROR: [youtube] gMPhI4aOwdY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] gMPhI4aOwdY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 35%|████████████████████████████████████▋ | 419/1212 [09:27<17:44, 1.34s/it]ERROR: [youtube] sLbsL6fpcBw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] sLbsL6fpcBw: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 33%|███████████████████████████████████▌ | 406/1212 [09:28<18:20, 1.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 34%|███████████████████████████████████▊ | 409/1212 [09:30<18:23, 1.37s/it]ERROR: [youtube] YLIyV3Z4fCU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] YLIyV3Z4fCU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 34%|████████████████████████████████████▏ | 414/1212 [09:30<19:00, 1.43s/it]ERROR: [youtube] 6AJ8iM3AfUU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 6AJ8iM3AfUU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 35%|█████████████████████████████████████▏ | 425/1212 [09:32<19:13, 1.47s/it]ERROR: [youtube] lPYDzr_-6gA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] lPYDzr_-6gA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 34%|███████████████████████████████████▉ | 411/1212 [09:34<18:04, 1.35s/it]ERROR: [youtube] 03qS1A7uKIU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 03qS1A7uKIU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 34%|███████████████████████████████████▌ | 407/1212 [09:36<18:11, 1.36s/it]ERROR: [youtube] FssQZhzaAbY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] FssQZhzaAbY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 35%|████████████████████████████████████▋ | 419/1212 [09:39<17:43, 1.34s/it]ERROR: [youtube] DlMSSq2G1m4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] DlMSSq2G1m4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 35%|█████████████████████████████████████▍ | 428/1212 [09:44<17:20, 1.33s/it]ERROR: [youtube] ZPKTDyWfQ-M: Private video. Sign in if you've been granted access to this video\n", " 35%|████████████████████████████████████▋ | 420/1212 [09:44<16:33, 1.25s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ZPKTDyWfQ-M: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 36%|█████████████████████████████████████▋ | 431/1212 [09:49<16:48, 1.29s/it]ERROR: [youtube] wwvGDfqOi20: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] wwvGDfqOi20: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 35%|████████████████████████████████████▊ | 421/1212 [09:52<17:57, 1.36s/it]ERROR: [youtube] 3ff59bTxpt0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 3ff59bTxpt0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 35%|█████████████████████████████████████▌ | 429/1212 [09:58<16:55, 1.30s/it]ERROR: [youtube] IkCWaswf6D8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] IkCWaswf6D8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 36%|██████████████████████████████████████ | 435/1212 [09:59<21:42, 1.68s/it]ERROR: [youtube] 6rb37ATu_dg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 6rb37ATu_dg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 36%|█████████████████████████████████████▊ | 432/1212 [10:02<17:03, 1.31s/it]ERROR: [youtube] GuvPa-kc-qE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] GuvPa-kc-qE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 37%|███████████████████████████████████████ | 446/1212 [10:07<18:53, 1.48s/it]ERROR: [youtube] 0ojWqXDSpxY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 0ojWqXDSpxY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 36%|██████████████████████████████████████▋ | 442/1212 [10:09<21:30, 1.68s/it]ERROR: [youtube] 4_Tj1jvHTQM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 4_Tj1jvHTQM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 37%|███████████████████████████████████████ | 447/1212 [10:12<16:59, 1.33s/it]ERROR: [youtube] hAUwy_vRra0: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] hAUwy_vRra0: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated." ] }, { "name": "stderr", "output_type": "stream", "text": [ " 36%|██████████████████████████████████████▍ | 440/1212 [10:12<20:43, 1.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 37%|███████████████████████████████████████▎ | 450/1212 [10:15<19:23, 1.53s/it]ERROR: [youtube] 3UChz9Tbwiw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 3UChz9Tbwiw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 36%|██████████████████████████████████████▋ | 442/1212 [10:17<18:49, 1.47s/it]ERROR: [youtube] oSODlrdxqU8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] oSODlrdxqU8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 37%|███████████████████████████████████████▌ | 453/1212 [10:19<19:17, 1.53s/it]ERROR: [youtube] 7H41UVlswQk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 7H41UVlswQk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 37%|███████████████████████████████████████ | 447/1212 [10:21<16:32, 1.30s/it]ERROR: [youtube] 73wutQZaYW8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 73wutQZaYW8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 38%|████████████████████████████████████████ | 458/1212 [10:28<17:18, 1.38s/it]ERROR: [youtube] AnlB--P_nbo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] AnlB--P_nbo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 38%|███████████████████████████████████████▊ | 455/1212 [10:29<20:07, 1.60s/it]ERROR: [youtube] IiD31j3TYhQ: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] IiD31j3TYhQ: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated." ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 38%|████████████████████████████████████████▏ | 459/1212 [10:29<17:21, 1.38s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 39%|█████████████████████████████████████████ | 469/1212 [10:37<17:59, 1.45s/it]ERROR: [youtube] 9NZD7tA2neI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 9NZD7tA2neI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 38%|████████████████████████████████████████▏ | 460/1212 [10:38<17:08, 1.37s/it]ERROR: [youtube] VdQFBR2lqi0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] VdQFBR2lqi0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 38%|████████████████████████████████████████▍ | 462/1212 [10:38<18:21, 1.47s/it]ERROR: [youtube] ISfQbyCvv_A: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ISfQbyCvv_A: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 39%|████████████████████████████████████████▉ | 468/1212 [10:39<15:37, 1.26s/it]ERROR: [youtube] mo5dTTmiKOE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] mo5dTTmiKOE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 39%|█████████████████████████████████████████▌ | 475/1212 [10:44<22:32, 1.83s/it]ERROR: [youtube] WUncTU48Vvg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] WUncTU48Vvg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 38%|████████████████████████████████████████▍ | 463/1212 [10:45<20:33, 1.65s/it]ERROR: [youtube] geDSM6Am_qU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] geDSM6Am_qU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 38%|████████████████████████████████████████▋ | 465/1212 [10:46<15:28, 1.24s/it]ERROR: [youtube] ku9APK7fHpQ: Private video. Sign in if you've been granted access to this video\n", " 37%|███████████████████████████████████████▎ | 450/1212 [10:46<18:12, 1.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ku9APK7fHpQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 39%|█████████████████████████████████████████ | 469/1212 [10:50<18:17, 1.48s/it]ERROR: [youtube] dvIG_sDP4_8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] dvIG_sDP4_8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 40%|██████████████████████████████████████████▏ | 483/1212 [10:50<15:40, 1.29s/it]ERROR: [youtube] AOID1rmmohk: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] AOID1rmmohk: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 39%|████████████████████████████████████████▊ | 467/1212 [10:51<17:14, 1.39s/it]ERROR: [youtube] Iup72F8tjec: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Iup72F8tjec: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 40%|██████████████████████████████████████████▌ | 486/1212 [10:57<15:19, 1.27s/it]ERROR: [youtube] 8XtjyH0E8yU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 8XtjyH0E8yU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 40%|██████████████████████████████████████████▍ | 485/1212 [11:01<18:25, 1.52s/it]ERROR: [youtube] N1EUvw74TPs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] N1EUvw74TPs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 40%|██████████████████████████████████████████▍ | 485/1212 [11:09<19:27, 1.61s/it]ERROR: [youtube] vt8xRyP_SD8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] vt8xRyP_SD8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 39%|█████████████████████████████████████████▌ | 475/1212 [11:10<15:48, 1.29s/it]ERROR: [youtube] 7O9MLNsAKcc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 7O9MLNsAKcc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 41%|███████████████████████████████████████████▊ | 501/1212 [11:11<18:06, 1.53s/it]ERROR: [youtube] 1qXMrQ0SyyQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 1qXMrQ0SyyQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 39%|█████████████████████████████████████████▋ | 477/1212 [11:13<15:56, 1.30s/it]ERROR: [youtube] fpjD4NsmuXA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] fpjD4NsmuXA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 41%|███████████████████████████████████████████▍ | 496/1212 [11:22<17:19, 1.45s/it]ERROR: [youtube] 7khdWxWLtY8: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 7khdWxWLtY8: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 41%|███████████████████████████████████████████ | 493/1212 [11:23<16:55, 1.41s/it]ERROR: [youtube] t5gYuGeebgs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] t5gYuGeebgs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 41%|███████████████████████████████████████████▌ | 498/1212 [11:27<15:47, 1.33s/it]ERROR: [youtube] T2TtExvLQeY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] T2TtExvLQeY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 41%|███████████████████████████████████████████ | 493/1212 [11:28<17:27, 1.46s/it]ERROR: [youtube] fvmH_iGMDCY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] fvmH_iGMDCY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 41%|███████████████████████████████████████████▊ | 501/1212 [11:30<17:02, 1.44s/it]ERROR: [youtube] 69pjCGh6qpw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 69pjCGh6qpw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 41%|███████████████████████████████████████████▋ | 500/1212 [11:30<15:46, 1.33s/it]ERROR: [youtube] -uCc3Ym_mLs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] -uCc3Ym_mLs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 41%|███████████████████████████████████████████▊ | 501/1212 [11:34<16:15, 1.37s/it]ERROR: [youtube] Q6vEtxfc5Ug: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Q6vEtxfc5Ug: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 42%|███████████████████████████████████████████▉ | 503/1212 [11:34<17:08, 1.45s/it]ERROR: [youtube] NrBM5p88L3g: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] NrBM5p88L3g: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 42%|████████████████████████████████████████████▍ | 508/1212 [11:36<20:03, 1.71s/it]ERROR: [youtube] RGX5O_trQGs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] RGX5O_trQGs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 40%|██████████████████████████████████████████▋ | 488/1212 [11:36<19:14, 1.60s/it]ERROR: [youtube] kP4cJpCOBQA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n", "ERROR: [youtube] kP4cJpCOBQA: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 42%|████████████████████████████████████████████ | 504/1212 [11:37<14:13, 1.21s/it]ERROR: [youtube] OKH7wUTwFgU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] OKH7wUTwFgU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 42%|████████████████████████████████████████████▍ | 508/1212 [11:39<15:53, 1.35s/it]ERROR: [youtube] Hd3wkIp0Ti8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Hd3wkIp0Ti8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 42%|████████████████████████████████████████████▍ | 508/1212 [11:43<15:23, 1.31s/it]ERROR: [youtube] yDaR9oGFkOc: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] yDaR9oGFkOc: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 42%|████████████████████████████████████████████ | 504/1212 [11:46<14:45, 1.25s/it]ERROR: [youtube] aw0vfT9lLBg: Private video. Sign in if you've been granted access to this video\n", " 42%|████████████████████████████████████████████▎ | 506/1212 [11:46<18:54, 1.61s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] aw0vfT9lLBg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 42%|████████████████████████████████████████████▌ | 510/1212 [11:49<18:49, 1.61s/it]ERROR: [youtube] lMETC1N6Waw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] lMETC1N6Waw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 42%|████████████████████████████████████████████▌ | 509/1212 [11:49<14:33, 1.24s/it]ERROR: [youtube] bGwSmt34YDI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] bGwSmt34YDI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 43%|█████████████████████████████████████████████▎ | 518/1212 [11:56<15:22, 1.33s/it]ERROR: [youtube] 5qlaOs-zmmk: This video has been removed for violating YouTube's Community Guidelines\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 5qlaOs-zmmk: This video has been removed for violating YouTube's Community Guidelines\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 42%|████████████████████████████████████████████▋ | 511/1212 [11:56<17:59, 1.54s/it]ERROR: [youtube] i5n7u0f8o04: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] i5n7u0f8o04: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 43%|█████████████████████████████████████████████▊ | 524/1212 [11:57<15:49, 1.38s/it]ERROR: [youtube] 5gXin6BU9f0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 5gXin6BU9f0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 44%|██████████████████████████████████████████████▍ | 531/1212 [11:58<13:40, 1.20s/it]ERROR: [youtube] 6dGRVdezqCQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 6dGRVdezqCQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 43%|█████████████████████████████████████████████▊ | 524/1212 [12:00<16:38, 1.45s/it]ERROR: [youtube] vVZmAYN3kSc: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] vVZmAYN3kSc: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 43%|█████████████████████████████████████████████▋ | 523/1212 [12:08<15:45, 1.37s/it]ERROR: [youtube] aFr9FwmdgHY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] aFr9FwmdgHY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 43%|██████████████████████████████████████████████ | 527/1212 [12:13<17:34, 1.54s/it]ERROR: [youtube] Ikp1l1oeK1w: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Ikp1l1oeK1w: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 44%|██████████████████████████████████████████████▋ | 534/1212 [12:18<15:18, 1.35s/it]ERROR: [youtube] LPFm_fMAg_s: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] LPFm_fMAg_s: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 44%|██████████████████████████████████████████████▌ | 533/1212 [12:20<16:57, 1.50s/it]ERROR: [youtube] dMsIHWkav38: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] dMsIHWkav38: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 45%|███████████████████████████████████████████████▏ | 540/1212 [12:21<14:34, 1.30s/it]ERROR: [youtube] -mxK55zeDZE: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] -mxK55zeDZE: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 45%|███████████████████████████████████████████████▊ | 546/1212 [12:34<15:21, 1.38s/it]ERROR: [youtube] jvObxNMvz4s: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] jvObxNMvz4s: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 46%|████████████████████████████████████████████████▍ | 554/1212 [12:36<14:36, 1.33s/it]ERROR: [youtube] WUc-pNxsxDY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] WUc-pNxsxDY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 45%|███████████████████████████████████████████████▊ | 546/1212 [12:39<15:12, 1.37s/it]ERROR: [youtube] DFzmGLVL2Uc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] DFzmGLVL2Uc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 45%|████████████████████████████████████████████████ | 549/1212 [12:39<14:44, 1.33s/it]ERROR: [youtube] YUu4yKMuC4Q: Private video. Sign in if you've been granted access to this video\n", " 44%|██████████████████████████████████████████████▉ | 536/1212 [12:39<13:32, 1.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] YUu4yKMuC4Q: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 46%|████████████████████████████████████████████████▍ | 554/1212 [12:42<14:07, 1.29s/it]ERROR: [youtube] puogeYAdS7w: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] puogeYAdS7w: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 46%|█████████████████████████████████████████████████▏ | 562/1212 [12:46<17:16, 1.60s/it]ERROR: [youtube] eeZLqHYUwIE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] eeZLqHYUwIE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 47%|█████████████████████████████████████████████████▊ | 569/1212 [12:48<15:36, 1.46s/it]ERROR: [youtube] b907ZzJy7gs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] b907ZzJy7gs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 46%|████████████████████████████████████████████████▋ | 556/1212 [12:49<14:03, 1.29s/it]ERROR: [youtube] aVRSOtqh8Ac: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] aVRSOtqh8Ac: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 45%|███████████████████████████████████████████████▍ | 543/1212 [12:49<15:28, 1.39s/it]ERROR: [youtube] FoPoAav41Jk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] FoPoAav41Jk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 47%|█████████████████████████████████████████████████▌ | 567/1212 [12:51<18:45, 1.75s/it]ERROR: [youtube] kvPwynK2zgg: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] kvPwynK2zgg: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 45%|████████████████████████████████████████████████ | 550/1212 [12:59<15:16, 1.38s/it]ERROR: [youtube] l640CnDwXy4: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] l640CnDwXy4: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 47%|█████████████████████████████████████████████████▌ | 567/1212 [13:01<12:38, 1.18s/it]ERROR: [youtube] dk3DnCCccl4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] dk3DnCCccl4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 46%|████████████████████████████████████████████████▉ | 560/1212 [13:01<16:44, 1.54s/it]ERROR: [youtube] L3ykFsZtoAY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] L3ykFsZtoAY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 46%|█████████████████████████████████████████████████▏ | 562/1212 [13:04<17:21, 1.60s/it]ERROR: [youtube] Pr0x_cDnGk0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Pr0x_cDnGk0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 46%|████████████████████████████████████████████████▉ | 559/1212 [13:07<18:48, 1.73s/it]ERROR: [youtube] t_8M94LKeHY: Video unavailable. This video has been removed by the uploader\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] t_8M94LKeHY: Video unavailable. This video has been removed by the uploader\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 47%|█████████████████████████████████████████████████▊ | 570/1212 [13:09<18:42, 1.75s/it]ERROR: [youtube] wD1uOv94j8g: Video unavailable. This video has been removed by the uploader\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] wD1uOv94j8g: Video unavailable. This video has been removed by the uploader\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 46%|████████████████████████████████████████████████▋ | 557/1212 [13:10<13:07, 1.20s/it]ERROR: [youtube] pkAIwScyWw0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] pkAIwScyWw0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 47%|██████████████████████████████████████████████████▏ | 574/1212 [13:20<14:15, 1.34s/it]ERROR: [youtube] 0JhHqFcyPXU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 0JhHqFcyPXU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 47%|██████████████████████████████████████████████████▎ | 575/1212 [13:35<14:41, 1.38s/it]ERROR: [youtube] _m9I5wDj-SI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] _m9I5wDj-SI: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 48%|██████████████████████████████████████████████████▉ | 582/1212 [13:35<15:32, 1.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 50%|████████████████████████████████████████████████████▋ | 602/1212 [13:42<12:51, 1.26s/it]ERROR: [youtube] -b7uRHRmSGw: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] -b7uRHRmSGw: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 49%|███████████████████████████████████████████████████▊ | 593/1212 [13:46<17:10, 1.67s/it]ERROR: [youtube] UAMZFShkddc: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] UAMZFShkddc: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 48%|██████████████████████████████████████████████████▉ | 583/1212 [13:46<16:32, 1.58s/it]ERROR: [youtube] xhLsohwR5dY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] xhLsohwR5dY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 50%|████████████████████████████████████████████████████▍ | 600/1212 [13:54<13:32, 1.33s/it]ERROR: [youtube] v86_6vUUfRU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] v86_6vUUfRU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 50%|█████████████████████████████████████████████████████ | 606/1212 [14:01<12:35, 1.25s/it]ERROR: [youtube] LM81v6xJPQs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] LM81v6xJPQs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 50%|████████████████████████████████████████████████████▋ | 603/1212 [14:02<14:25, 1.42s/it]ERROR: [youtube] dBgdySPxqWQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] dBgdySPxqWQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 50%|█████████████████████████████████████████████████████▌ | 612/1212 [14:04<12:32, 1.25s/it]ERROR: [youtube] 4RFeTyYgpt4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 4RFeTyYgpt4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 50%|████████████████████████████████████████████████████▊ | 604/1212 [14:04<12:42, 1.25s/it]ERROR: [youtube] pUhfXIsITCw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] pUhfXIsITCw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 50%|█████████████████████████████████████████████████████ | 606/1212 [14:06<13:46, 1.36s/it]ERROR: [youtube] CrS70tC5nv0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] CrS70tC5nv0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 51%|█████████████████████████████████████████████████████▊ | 616/1212 [14:09<12:29, 1.26s/it]ERROR: [youtube] t7SiwxUDFTA: Private video. Sign in if you've been granted access to this video\n", " 51%|█████████████████████████████████████████████████████▋ | 614/1212 [14:09<15:07, 1.52s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] t7SiwxUDFTA: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 51%|██████████████████████████████████████████████████████▌ | 624/1212 [14:09<12:20, 1.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 51%|██████████████████████████████████████████████████████ | 618/1212 [14:11<12:05, 1.22s/it]ERROR: [youtube] 6hyOvseRIbw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 6hyOvseRIbw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 51%|██████████████████████████████████████████████████████▍ | 623/1212 [14:17<12:56, 1.32s/it]ERROR: [youtube] 7Mm2eHhRGsU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 7Mm2eHhRGsU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 51%|██████████████████████████████████████████████████████▎ | 621/1212 [14:19<12:39, 1.28s/it]ERROR: [youtube] ozcfuyYt0VU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ozcfuyYt0VU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 51%|█████████████████████████████████████████████████████▉ | 617/1212 [14:20<12:09, 1.23s/it]ERROR: [youtube] Ynp4nDH4gpM: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Ynp4nDH4gpM: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 52%|███████████████████████████████████████████████████████▌ | 635/1212 [14:33<12:05, 1.26s/it]ERROR: [youtube] R0Jt9JzaYqw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] R0Jt9JzaYqw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 52%|███████████████████████████████████████████████████████▎ | 633/1212 [14:35<15:18, 1.59s/it]ERROR: [youtube] VtqThc4xVhE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] VtqThc4xVhE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 52%|███████████████████████████████████████████████████████▌ | 636/1212 [14:37<14:21, 1.50s/it]ERROR: [youtube] mCcyXitOY20: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] mCcyXitOY20: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 53%|███████████████████████████████████████████████████████▉ | 639/1212 [14:37<13:32, 1.42s/it]ERROR: [youtube] WDlEzhfxvbw: Private video. Sign in if you've been granted access to this video\n", " 52%|██████████████████████████████████████████████████████▉ | 628/1212 [14:37<15:26, 1.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] WDlEzhfxvbw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 51%|██████████████████████████████████████████████████████▏ | 620/1212 [14:38<14:14, 1.44s/it]ERROR: [youtube] 9L614B8bPww: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 9L614B8bPww: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 52%|███████████████████████████████████████████████████████▏ | 631/1212 [14:41<12:46, 1.32s/it]ERROR: [youtube] 5qap5aO4i9A: We're processing this video. Check back later.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 5qap5aO4i9A: We're processing this video. Check back later.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 53%|████████████████████████████████████████████████████████▏ | 642/1212 [14:41<12:18, 1.29s/it]ERROR: [youtube] YCYovd3-Yv8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] YCYovd3-Yv8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 53%|███████████████████████████████████████████████████████▉ | 640/1212 [14:48<14:36, 1.53s/it]ERROR: [youtube] YaXIxhx9utg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] YaXIxhx9utg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 55%|██████████████████████████████████████████████████████████▎ | 667/1212 [15:04<12:17, 1.35s/it]ERROR: [youtube] TbOFXAARwG8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] TbOFXAARwG8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 54%|████████████████████████████████████████████████████████▊ | 649/1212 [15:05<12:30, 1.33s/it]ERROR: [youtube] X-PmeIWy6UU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] X-PmeIWy6UU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 55%|██████████████████████████████████████████████████████████▏ | 666/1212 [15:09<13:00, 1.43s/it]ERROR: [youtube] nqbas9UnaSM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] nqbas9UnaSM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 54%|█████████████████████████████████████████████████████████▌ | 658/1212 [15:13<19:34, 2.12s/it]ERROR: [youtube] 45SV-vLKZk4: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 45SV-vLKZk4: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 55%|█████████████████████████████████████████████████████████▊ | 661/1212 [15:14<11:47, 1.28s/it]ERROR: [youtube] BuQpNVpWLk4: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] BuQpNVpWLk4: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 55%|█████████████████████████████████████████████████████████▉ | 663/1212 [15:17<13:27, 1.47s/it]ERROR: [youtube] RcxPUgi-314: Sign in to confirm your age. This video may be inappropriate for some users.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] RcxPUgi-314: Sign in to confirm your age. This video may be inappropriate for some users.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 55%|██████████████████████████████████████████████████████████▏ | 665/1212 [15:19<12:04, 1.32s/it]ERROR: [youtube] tdnc9epDi4o: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] tdnc9epDi4o: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 55%|██████████████████████████████████████████████████████████ | 664/1212 [15:22<14:04, 1.54s/it]ERROR: [youtube] RuOBcx06_n0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] RuOBcx06_n0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 55%|██████████████████████████████████████████████████████████▏ | 666/1212 [15:24<14:24, 1.58s/it]ERROR: [youtube] W-jOKQIcUmo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] W-jOKQIcUmo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 56%|███████████████████████████████████████████████████████████▎ | 678/1212 [15:26<12:53, 1.45s/it]ERROR: [youtube] mvWTQMkWry0: Private video. Sign in if you've been granted access to this video\n", " 55%|██████████████████████████████████████████████████████████ | 664/1212 [15:26<13:33, 1.48s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] mvWTQMkWry0: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 55%|█████████████████████████████████████████████████████████▉ | 662/1212 [15:26<11:21, 1.24s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 55%|██████████████████████████████████████████████████████████▏ | 665/1212 [15:29<10:39, 1.17s/it]ERROR: [youtube] KXB3U5NNegY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] KXB3U5NNegY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 56%|██████████████████████████████████████████████████████████▉ | 674/1212 [15:35<12:04, 1.35s/it]ERROR: [youtube] IssqooqowAU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] IssqooqowAU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 56%|██████████████████████████████████████████████████████████▊ | 673/1212 [15:40<11:47, 1.31s/it]ERROR: [youtube] hSAQPOGUMGY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] hSAQPOGUMGY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 56%|██████████████████████████████████████████████████████████▉ | 674/1212 [15:41<12:25, 1.39s/it]ERROR: [youtube] brnWmWParLo: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n", " 56%|███████████████████████████████████████████████████████████▋ | 683/1212 [15:41<16:14, 1.84s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] brnWmWParLo: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 56%|███████████████████████████████████████████████████████████ | 676/1212 [15:46<14:58, 1.68s/it]ERROR: [youtube] evl6YLdToYA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] evl6YLdToYA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 56%|███████████████████████████████████████████████████████████▋ | 682/1212 [15:48<10:34, 1.20s/it]ERROR: [youtube] YWszIRV71jo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] YWszIRV71jo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 55%|██████████████████████████████████████████████████████████▋ | 671/1212 [15:48<12:08, 1.35s/it]ERROR: [youtube] thfF3nZLiOQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] thfF3nZLiOQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 57%|████████████████████████████████████████████████████████████▌ | 693/1212 [15:51<11:01, 1.27s/it]ERROR: [youtube] EOwZzN44Ypk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] EOwZzN44Ypk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 57%|████████████████████████████████████████████████████████████▎ | 689/1212 [15:53<11:31, 1.32s/it]ERROR: [youtube] q4nFta7Gs-c: Video unavailable. This video has been removed by the uploader\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] q4nFta7Gs-c: Video unavailable. This video has been removed by the uploader\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 58%|█████████████████████████████████████████████████████████████▏ | 700/1212 [15:59<11:56, 1.40s/it]ERROR: [youtube] tbDKyfK7TX4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] tbDKyfK7TX4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 57%|████████████████████████████████████████████████████████████▊ | 696/1212 [16:04<12:46, 1.49s/it]ERROR: [youtube] WhMZ-WBc0dY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] WhMZ-WBc0dY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 58%|█████████████████████████████████████████████████████████████▊ | 707/1212 [16:09<11:08, 1.32s/it]ERROR: [youtube] mIMIIkSwSJg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] mIMIIkSwSJg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 58%|█████████████████████████████████████████████████████████████▏ | 700/1212 [16:13<13:52, 1.63s/it]ERROR: [youtube] QErc_aRGsRs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] QErc_aRGsRs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 58%|████████████████████████████████████████████████████████████▉ | 697/1212 [16:13<10:54, 1.27s/it]ERROR: [youtube] EirKDe_j40k: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] EirKDe_j40k: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 58%|█████████████████████████████████████████████████████████████▍ | 702/1212 [16:16<11:03, 1.30s/it]ERROR: [youtube] LqG9vsPjn_U: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] LqG9vsPjn_U: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 59%|██████████████████████████████████████████████████████████████▎ | 713/1212 [16:20<10:27, 1.26s/it]ERROR: [youtube] noqwNlQXkpE: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] noqwNlQXkpE: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 58%|█████████████████████████████████████████████████████████████▍ | 702/1212 [16:22<12:42, 1.50s/it]ERROR: [youtube] tZ7EjFs8ePk: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] tZ7EjFs8ePk: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 59%|██████████████████████████████████████████████████████████████▏ | 711/1212 [16:31<10:22, 1.24s/it]ERROR: [youtube] UERzZWfi88w: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n", " 58%|█████████████████████████████████████████████████████████████▋ | 705/1212 [16:31<12:59, 1.54s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] UERzZWfi88w: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 59%|███████████████████████████████████████████████████████████████ | 721/1212 [16:35<12:03, 1.47s/it]ERROR: [youtube] QYlQBD1bX5w: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] QYlQBD1bX5w: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 59%|██████████████████████████████████████████████████████████████▌ | 716/1212 [16:36<11:31, 1.39s/it]ERROR: [youtube] xyhRNAIgGUY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n", " 57%|████████████████████████████████████████████████████████████▍ | 691/1212 [16:36<11:45, 1.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] xyhRNAIgGUY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 59%|██████████████████████████████████████████████████████████████▌ | 715/1212 [16:40<10:23, 1.25s/it]ERROR: [youtube] CY1zusjBxXA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] CY1zusjBxXA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 59%|██████████████████████████████████████████████████████████████▎ | 713/1212 [16:41<13:00, 1.56s/it]ERROR: [youtube] nzqCSJhPy_M: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] nzqCSJhPy_M: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 59%|███████████████████████████████████████████████████████████████ | 721/1212 [16:44<11:05, 1.36s/it]ERROR: [youtube] wr2FHBN7WO0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] wr2FHBN7WO0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 60%|███████████████████████████████████████████████████████████████▏ | 722/1212 [16:46<10:58, 1.34s/it]ERROR: [youtube] g0px87v4v-Y: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] g0px87v4v-Y: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 61%|████████████████████████████████████████████████████████████████▍ | 737/1212 [16:52<10:58, 1.39s/it]ERROR: [youtube] 4IMBR1PvV8w: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 4IMBR1PvV8w: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 61%|████████████████████████████████████████████████████████████████▋ | 740/1212 [16:56<11:30, 1.46s/it]ERROR: [youtube] CfoBYTrex2I: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] CfoBYTrex2I: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 61%|████████████████████████████████████████████████████████████████▍ | 737/1212 [16:57<10:04, 1.27s/it]ERROR: [youtube] 3rF8ecmwOKo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 3rF8ecmwOKo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 61%|█████████████████████████████████████████████████████████████████ | 744/1212 [16:57<09:37, 1.23s/it]ERROR: [youtube] NKLQekjiQT4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] NKLQekjiQT4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 61%|████████████████████████████████████████████████████████████████▋ | 739/1212 [17:05<09:37, 1.22s/it]ERROR: [youtube] h-TYiaXGAs8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] h-TYiaXGAs8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 62%|█████████████████████████████████████████████████████████████████▏ | 746/1212 [17:10<10:37, 1.37s/it]ERROR: [youtube] 6emnRGeJ46c: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 6emnRGeJ46c: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 62%|█████████████████████████████████████████████████████████████████▊ | 752/1212 [17:12<10:31, 1.37s/it]ERROR: [youtube] YpOEMZx_XTk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] YpOEMZx_XTk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 62%|█████████████████████████████████████████████████████████████████▎ | 747/1212 [17:13<09:08, 1.18s/it]ERROR: [youtube] g8afxHtnIJY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] g8afxHtnIJY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 62%|█████████████████████████████████████████████████████████████████▎ | 747/1212 [17:14<09:42, 1.25s/it]ERROR: [youtube] 3ZAtkQUQytE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 3ZAtkQUQytE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 62%|██████████████████████████████████████████████████████████████████ | 755/1212 [17:15<08:45, 1.15s/it]ERROR: [youtube] 8wjdSbVBbQY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 8wjdSbVBbQY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 61%|████████████████████████████████████████████████████████████████▋ | 739/1212 [17:17<10:48, 1.37s/it]ERROR: [youtube] k-P3wVj13mE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] k-P3wVj13mE: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 62%|█████████████████████████████████████████████████████████████████▎ | 747/1212 [17:17<11:01, 1.42s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 62%|█████████████████████████████████████████████████████████████████▉ | 754/1212 [17:22<09:30, 1.25s/it]ERROR: [youtube] hqOQy_1_B9g: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] hqOQy_1_B9g: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated." ] }, { "name": "stderr", "output_type": "stream", "text": [ " 62%|██████████████████████████████████████████████████████████████████ | 756/1212 [17:22<09:43, 1.28s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 63%|██████████████████████████████████████████████████████████████████▍ | 759/1212 [17:28<08:59, 1.19s/it]ERROR: [youtube] -mf1DHte4Qo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] -mf1DHte4Qo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 62%|█████████████████████████████████████████████████████████████████▊ | 753/1212 [17:29<11:20, 1.48s/it]ERROR: [youtube] b1smxdlgUPQ: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] b1smxdlgUPQ: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 62%|█████████████████████████████████████████████████████████████████▊ | 752/1212 [17:34<12:00, 1.57s/it]ERROR: [youtube] F1CjvfGG_1U: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] F1CjvfGG_1U: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 64%|███████████████████████████████████████████████████████████████████▉ | 777/1212 [17:35<10:11, 1.41s/it]ERROR: [youtube] Kq06bNi1Pio: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Kq06bNi1Pio: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 63%|██████████████████████████████████████████████████████████████████▉ | 766/1212 [17:36<11:01, 1.48s/it]ERROR: [youtube] bqgJgpLLQfg: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] bqgJgpLLQfg: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 62%|█████████████████████████████████████████████████████████████████▍ | 748/1212 [17:36<10:38, 1.38s/it]ERROR: [youtube] FudGbs46Xl0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] FudGbs46Xl0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 62%|█████████████████████████████████████████████████████████████████▌ | 750/1212 [17:36<12:01, 1.56s/it]ERROR: [youtube] DNvC9SGaG1s: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] DNvC9SGaG1s: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 62%|██████████████████████████████████████████████████████████████████▏ | 757/1212 [17:37<08:56, 1.18s/it]ERROR: [youtube] eqi-IAEiTGI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] eqi-IAEiTGI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 63%|██████████████████████████████████████████████████████████████████▊ | 764/1212 [17:37<11:17, 1.51s/it]ERROR: [youtube] -5Qqqm2tMh4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] -5Qqqm2tMh4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 62%|██████████████████████████████████████████████████████████████████ | 755/1212 [17:41<11:28, 1.51s/it]ERROR: [youtube] TKBVmhugrW8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] TKBVmhugrW8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 64%|███████████████████████████████████████████████████████████████████▍ | 771/1212 [17:41<11:32, 1.57s/it]ERROR: [youtube] 0VbTAsXg26E: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 0VbTAsXg26E: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 65%|████████████████████████████████████████████████████████████████████▍ | 782/1212 [17:42<09:34, 1.34s/it]ERROR: [youtube] dVHv8N0BZPM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] dVHv8N0BZPM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 64%|███████████████████████████████████████████████████████████████████▌ | 772/1212 [17:42<10:19, 1.41s/it]ERROR: [youtube] AfCuZyT1g7s: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n", " 63%|███████████████████████████████████████████████████████████████████ | 767/1212 [17:42<08:47, 1.18s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] AfCuZyT1g7s: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 63%|██████████████████████████████████████████████████████████████████▍ | 759/1212 [17:43<09:41, 1.28s/it]ERROR: [youtube] gUEOaaJJMy0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] gUEOaaJJMy0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 64%|███████████████████████████████████████████████████████████████████▊ | 776/1212 [17:44<10:55, 1.50s/it]ERROR: [youtube] bGepPA2QI50: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] bGepPA2QI50: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 63%|███████████████████████████████████████████████████████████████████▎ | 769/1212 [17:44<09:06, 1.23s/it]ERROR: [youtube] kQ3wNgkTxWU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] kQ3wNgkTxWU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 63%|██████████████████████████████████████████████████████████████████▋ | 762/1212 [17:45<10:02, 1.34s/it]ERROR: [youtube] 9J662wmaMLw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 9J662wmaMLw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 62%|██████████████████████████████████████████████████████████████████▏ | 757/1212 [17:45<09:58, 1.31s/it]ERROR: [youtube] fr1QJY_udpQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] fr1QJY_udpQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 63%|██████████████████████████████████████████████████████████████████▊ | 764/1212 [17:47<08:53, 1.19s/it]ERROR: [youtube] PmCffj10r8M: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] PmCffj10r8M: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 63%|██████████████████████████████████████████████████████████████████▉ | 766/1212 [17:49<08:46, 1.18s/it]ERROR: [youtube] kNl3Z0yw6nw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] kNl3Z0yw6nw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 64%|████████████████████████████████████████████████████████████████████▏ | 780/1212 [17:54<09:19, 1.30s/it]ERROR: [youtube] LrGW8mWhZD8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] LrGW8mWhZD8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 63%|██████████████████████████████████████████████████████████████████▉ | 766/1212 [17:55<07:52, 1.06s/it]ERROR: [youtube] GOQUSvmdt5c: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] GOQUSvmdt5c: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 64%|███████████████████████████████████████████████████████████████████▊ | 776/1212 [17:55<09:48, 1.35s/it]ERROR: [youtube] ZKxVdzvyy5M: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ZKxVdzvyy5M: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 63%|███████████████████████████████████████████████████████████████████▏ | 768/1212 [17:55<09:01, 1.22s/it]ERROR: [youtube] UALw8Uvztrs: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] UALw8Uvztrs: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 64%|████████████████████████████████████████████████████████████████████ | 778/1212 [17:56<09:03, 1.25s/it]ERROR: [youtube] r9q1kaN8ly8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] r9q1kaN8ly8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 64%|███████████████████████████████████████████████████████████████████▊ | 776/1212 [17:56<10:24, 1.43s/it]ERROR: [youtube] P0vzA9o4TaM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] P0vzA9o4TaM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 65%|████████████████████████████████████████████████████████████████████▋ | 786/1212 [18:06<12:07, 1.71s/it]ERROR: [youtube] Pq1RmSFnHPw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Pq1RmSFnHPw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 64%|████████████████████████████████████████████████████████████████████▏ | 780/1212 [18:08<10:51, 1.51s/it]ERROR: [youtube] aU6L_Pn3_3g: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] aU6L_Pn3_3g: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 64%|███████████████████████████████████████████████████████████████████▋ | 774/1212 [18:08<10:00, 1.37s/it]ERROR: [youtube] h2Vilakfz9Q: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] h2Vilakfz9Q: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 65%|████████████████████████████████████████████████████████████████████▉ | 788/1212 [18:14<09:03, 1.28s/it]ERROR: [youtube] dKzjy4UcyvY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] dKzjy4UcyvY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 66%|██████████████████████████████████████████████████████████████████████▎ | 804/1212 [18:18<08:28, 1.25s/it]ERROR: [youtube] CiDqYUUlNrk: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] CiDqYUUlNrk: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 65%|█████████████████████████████████████████████████████████████████████▎ | 792/1212 [18:19<08:16, 1.18s/it]ERROR: [youtube] ikCiak02cMM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ikCiak02cMM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 66%|█████████████████████████████████████████████████████████████████████▋ | 797/1212 [18:22<11:25, 1.65s/it]ERROR: [youtube] JCVGD-TD7C8: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] JCVGD-TD7C8: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 66%|██████████████████████████████████████████████████████████████████████▍ | 805/1212 [18:24<10:38, 1.57s/it]ERROR: [youtube] 2leUFjCJr50: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 2leUFjCJr50: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 65%|█████████████████████████████████████████████████████████████████████▎ | 793/1212 [18:26<08:53, 1.27s/it]ERROR: [youtube] O58XC4xfF1o: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] O58XC4xfF1o: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 66%|█████████████████████████████████████████████████████████████████████▌ | 795/1212 [18:26<08:43, 1.26s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 67%|██████████████████████████████████████████████████████████████████████▌ | 807/1212 [18:27<10:06, 1.50s/it]ERROR: [youtube] Dmm36D8UoBg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Dmm36D8UoBg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 67%|██████████████████████████████████████████████████████████████████████▌ | 807/1212 [18:44<08:18, 1.23s/it]ERROR: [youtube] ontREty-rKw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ontREty-rKw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "ERROR: [youtube] b-KMUazDa8s: Private video. Sign in if you've been granted access to this video\n", " 67%|██████████████████████████████████████████████████████████████████████▋ | 808/1212 [18:44<09:13, 1.37s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] b-KMUazDa8s: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 67%|███████████████████████████████████████████████████████████████████████ | 813/1212 [18:52<09:07, 1.37s/it]ERROR: [youtube] wc1l1FRmBFo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] wc1l1FRmBFo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 66%|██████████████████████████████████████████████████████████████████████▎ | 804/1212 [18:53<09:14, 1.36s/it]ERROR: [youtube] IEO109WLZTs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] IEO109WLZTs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 67%|███████████████████████████████████████████████████████████████████████▍ | 817/1212 [18:58<08:19, 1.27s/it]ERROR: [youtube] 2nwshhNi-UQ: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 2nwshhNi-UQ: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 69%|████████████████████████████████████████████████████████████████████████▉ | 834/1212 [19:00<08:14, 1.31s/it]ERROR: [youtube] biVSa0cNrm8: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] biVSa0cNrm8: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 68%|████████████████████████████████████████████████████████████████████████▏ | 825/1212 [19:01<08:29, 1.32s/it]ERROR: [youtube] KKKod3FqDGY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] KKKod3FqDGY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 68%|███████████████████████████████████████████████████████████████████████▋ | 820/1212 [19:04<08:58, 1.37s/it]ERROR: [youtube] GDERZlGYPjw: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] GDERZlGYPjw: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 68%|███████████████████████████████████████████████████████████████████████▉ | 822/1212 [19:13<12:33, 1.93s/it]ERROR: [youtube] HVVbGvyxdJM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] HVVbGvyxdJM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 69%|█████████████████████████████████████████████████████████████████████████▎ | 838/1212 [19:17<07:54, 1.27s/it]ERROR: [youtube] kWVa9qZbjUw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] kWVa9qZbjUw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 69%|█████████████████████████████████████████████████████████████████████████ | 836/1212 [19:22<10:15, 1.64s/it]ERROR: [youtube] mYrVtoK9NVM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] mYrVtoK9NVM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 68%|████████████████████████████████████████████████████████████████████████▍ | 828/1212 [19:22<10:01, 1.57s/it]ERROR: [youtube] dUxc8O_0cIg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] dUxc8O_0cIg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 69%|█████████████████████████████████████████████████████████████████████████▎ | 838/1212 [19:24<09:33, 1.53s/it]ERROR: [youtube] 0A_NlOjKmYo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 0A_NlOjKmYo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 70%|██████████████████████████████████████████████████████████████████████████▌ | 853/1212 [19:25<08:12, 1.37s/it]ERROR: [youtube] nXs4t0CHsIY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] nXs4t0CHsIY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 70%|█████████████████████████████████████████████████████████████████████████▉ | 846/1212 [19:25<08:47, 1.44s/it]ERROR: [youtube] 16Q8E61_H-A: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 16Q8E61_H-A: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 70%|██████████████████████████████████████████████████████████████████████████▌ | 852/1212 [19:42<07:23, 1.23s/it]ERROR: [youtube] RlOhbjlZrQE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] RlOhbjlZrQE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 72%|███████████████████████████████████████████████████████████████████████████▉ | 868/1212 [19:44<06:59, 1.22s/it]ERROR: [youtube] u-S5H8kxa4k: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] u-S5H8kxa4k: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 71%|███████████████████████████████████████████████████████████████████████████▋ | 866/1212 [19:53<08:20, 1.45s/it]ERROR: [youtube] 9buqvTAyFcE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 9buqvTAyFcE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 72%|████████████████████████████████████████████████████████████████████████████ | 870/1212 [19:55<07:40, 1.35s/it]ERROR: [youtube] 8vkQRE9RzyQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 8vkQRE9RzyQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 72%|███████████████████████████████████████████████████████████████████████████▉ | 868/1212 [20:01<08:50, 1.54s/it]ERROR: [youtube] NgugA-YR358: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] NgugA-YR358: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 72%|████████████████████████████████████████████████████████████████████████████▋ | 877/1212 [20:05<08:17, 1.48s/it]ERROR: [youtube] y5ry1rhe6WQ: Private video. Sign in if you've been granted access to this video\n", " 71%|███████████████████████████████████████████████████████████████████████████▏ | 859/1212 [20:05<07:29, 1.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] y5ry1rhe6WQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 72%|████████████████████████████████████████████████████████████████████████████▎ | 872/1212 [20:06<07:24, 1.31s/it]ERROR: [youtube] Y0yL8O3qecc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Y0yL8O3qecc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 71%|███████████████████████████████████████████████████████████████████████████▍ | 863/1212 [20:10<07:40, 1.32s/it]ERROR: [youtube] Twqrx70nc5Q: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Twqrx70nc5Q: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 72%|████████████████████████████████████████████████████████████████████████████▌ | 876/1212 [20:11<07:20, 1.31s/it]ERROR: [youtube] RrF1kXzi7mo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] RrF1kXzi7mo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 73%|█████████████████████████████████████████████████████████████████████████████▊ | 889/1212 [20:11<07:11, 1.34s/it]ERROR: [youtube] FHRNj4pSDYM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] FHRNj4pSDYM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 73%|█████████████████████████████████████████████████████████████████████████████▋ | 888/1212 [20:19<07:31, 1.39s/it]ERROR: [youtube] L_J0B6eb1Wc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] L_J0B6eb1Wc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 72%|████████████████████████████████████████████████████████████████████████████▍ | 874/1212 [20:27<07:33, 1.34s/it]ERROR: [youtube] AeIyRUQtmo0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] AeIyRUQtmo0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 74%|██████████████████████████████████████████████████████████████████████████████ | 893/1212 [20:30<08:20, 1.57s/it]ERROR: [youtube] ffYoYz77QMo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ffYoYz77QMo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 74%|██████████████████████████████████████████████████████████████████████████████▎ | 895/1212 [20:33<08:12, 1.55s/it]ERROR: [youtube] TepYXcAz6n8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] TepYXcAz6n8: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 73%|█████████████████████████████████████████████████████████████████████████████▎ | 884/1212 [20:32<08:50, 1.62s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 73%|█████████████████████████████████████████████████████████████████████████████▊ | 890/1212 [20:34<07:01, 1.31s/it]ERROR: [youtube] BDdRNRO4nHo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] BDdRNRO4nHo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 74%|██████████████████████████████████████████████████████████████████████████████▍ | 897/1212 [20:36<06:53, 1.31s/it]ERROR: [youtube] EPDza7v8auA: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] EPDza7v8auA: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated." ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 73%|█████████████████████████████████████████████████████████████████████████████ | 881/1212 [20:37<06:41, 1.21s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 74%|██████████████████████████████████████████████████████████████████████████████▋ | 900/1212 [20:37<07:10, 1.38s/it]ERROR: [youtube] -N0bISrgSWY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] -N0bISrgSWY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 73%|████████████████████████████████████████████████████████████████████████████▉ | 880/1212 [20:37<06:53, 1.24s/it]ERROR: [youtube] qDbQoiN8NtE: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] qDbQoiN8NtE: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 73%|█████████████████████████████████████████████████████████████████████████████▏ | 883/1212 [20:39<07:33, 1.38s/it]ERROR: [youtube] ZUKkYqjEDY0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ZUKkYqjEDY0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 74%|██████████████████████████████████████████████████████████████████████████████▋ | 900/1212 [20:48<08:01, 1.54s/it]ERROR: [youtube] 7PU9gd0KjgI: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 7PU9gd0KjgI: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 74%|██████████████████████████████████████████████████████████████████████████████▎ | 895/1212 [20:48<06:41, 1.27s/it]ERROR: [youtube] 16Bzs42sB6s: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 16Bzs42sB6s: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 74%|██████████████████████████████████████████████████████████████████████████████▋ | 900/1212 [20:50<07:18, 1.40s/it]ERROR: [youtube] w8wtMNIXUtI: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] w8wtMNIXUtI: Video unavailable" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 72%|████████████████████████████████████████████████████████████████████████████▏ | 871/1212 [20:50<06:48, 1.20s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 74%|██████████████████████████████████████████████████████████████████████████████▍ | 897/1212 [21:00<07:48, 1.49s/it]ERROR: [youtube] DD7x3aM5nbU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] DD7x3aM5nbU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 75%|███████████████████████████████████████████████████████████████████████████████▋ | 911/1212 [21:03<06:14, 1.24s/it]ERROR: [youtube] LNGdVmPQi1U: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] LNGdVmPQi1U: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 75%|███████████████████████████████████████████████████████████████████████████████▏ | 905/1212 [21:05<06:59, 1.37s/it]ERROR: [youtube] GwUIl7lGs0s: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] GwUIl7lGs0s: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 75%|███████████████████████████████████████████████████████████████████████████████▉ | 914/1212 [21:05<05:26, 1.10s/it]ERROR: [youtube] Spk1ifKkXPg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Spk1ifKkXPg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 75%|████████████████████████████████████████████████████████████████████████████████ | 915/1212 [21:05<07:00, 1.42s/it]ERROR: [youtube] w0JCZNLsUoA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] w0JCZNLsUoA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 76%|█████████████████████████████████████████████████████████████████████████████████ | 927/1212 [21:09<06:39, 1.40s/it]ERROR: [youtube] ykxsu68BNIk: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ykxsu68BNIk: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 76%|████████████████████████████████████████████████████████████████████████████████▉ | 926/1212 [21:16<06:43, 1.41s/it]ERROR: [youtube] CzP0F0zjOzY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] CzP0F0zjOzY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 77%|█████████████████████████████████████████████████████████████████████████████████▊ | 935/1212 [21:19<06:42, 1.45s/it]ERROR: [youtube] ja9bdb9Mozc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ja9bdb9Mozc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 77%|█████████████████████████████████████████████████████████████████████████████████▌ | 933/1212 [21:22<05:56, 1.28s/it]ERROR: [youtube] CkbGat2957w: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] CkbGat2957w: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 76%|████████████████████████████████████████████████████████████████████████████████▏ | 917/1212 [21:26<08:57, 1.82s/it]ERROR: [youtube] P8XVYk1LV1c: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] P8XVYk1LV1c: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 76%|████████████████████████████████████████████████████████████████████████████████▋ | 922/1212 [21:40<07:25, 1.54s/it]ERROR: [youtube] 32JT9tGgCOA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 32JT9tGgCOA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 76%|████████████████████████████████████████████████████████████████████████████████▉ | 925/1212 [21:41<07:16, 1.52s/it]ERROR: [youtube] 5g1Jxt_EhuI: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 5g1Jxt_EhuI: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 77%|█████████████████████████████████████████████████████████████████████████████████▉ | 937/1212 [21:45<06:25, 1.40s/it]ERROR: [youtube] _2uX6iYH8tI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] _2uX6iYH8tI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 78%|██████████████████████████████████████████████████████████████████████████████████▍ | 943/1212 [21:47<05:33, 1.24s/it]ERROR: [youtube] atyd2V3Ecqw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] atyd2V3Ecqw: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 77%|█████████████████████████████████████████████████████████████████████████████████▏ | 929/1212 [21:47<06:21, 1.35s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 78%|██████████████████████████████████████████████████████████████████████████████████▋ | 945/1212 [21:50<06:05, 1.37s/it]ERROR: [youtube] OvUQ747KKFk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] OvUQ747KKFk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 78%|██████████████████████████████████████████████████████████████████████████████████▊ | 947/1212 [21:53<06:13, 1.41s/it]ERROR: [youtube] CqBRCa3X5tE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] CqBRCa3X5tE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 78%|███████████████████████████████████████████████████████████████████████████████████▏ | 951/1212 [21:55<05:13, 1.20s/it]ERROR: [youtube] Qr6PnRyPI1s: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Qr6PnRyPI1s: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 80%|████████████████████████████████████████████████████████████████████████████████████▍ | 965/1212 [21:58<05:21, 1.30s/it]ERROR: [youtube] uRNo85cRwzc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] uRNo85cRwzc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 79%|███████████████████████████████████████████████████████████████████████████████████▌ | 956/1212 [22:00<07:16, 1.71s/it]ERROR: [youtube] 9cQ4xPT-KiI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 9cQ4xPT-KiI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 77%|██████████████████████████████████████████████████████████████████████████████████ | 938/1212 [22:01<06:11, 1.36s/it]ERROR: [youtube] RA2n-BBsmm0: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] RA2n-BBsmm0: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 80%|████████████████████████████████████████████████████████████████████████████████████▌ | 967/1212 [22:05<05:44, 1.41s/it]ERROR: [youtube] jSHhlIf02ro: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] jSHhlIf02ro: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 78%|██████████████████████████████████████████████████████████████████████████████████▉ | 949/1212 [22:05<06:07, 1.40s/it]ERROR: [youtube] UQus-zCP6B4: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] UQus-zCP6B4: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 78%|██████████████████████████████████████████████████████████████████████████████████▎ | 941/1212 [22:06<06:11, 1.37s/it]ERROR: [youtube] 3wAFsv4VOqI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 3wAFsv4VOqI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 79%|████████████████████████████████████████████████████████████████████████████████████▏ | 962/1212 [22:09<05:06, 1.23s/it]ERROR: [youtube] zXf73cK8BRM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] zXf73cK8BRM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 79%|███████████████████████████████████████████████████████████████████████████████████▋ | 957/1212 [22:09<05:35, 1.31s/it]ERROR: [youtube] iUyrBrN5yp4: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] iUyrBrN5yp4: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 80%|████████████████████████████████████████████████████████████████████████████████████▉ | 971/1212 [22:10<04:17, 1.07s/it]ERROR: [youtube] S5OKhEqAIVo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] S5OKhEqAIVo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 79%|████████████████████████████████████████████████████████████████████████████████████▏ | 962/1212 [22:16<05:23, 1.29s/it]ERROR: [youtube] 9awwoKXfn6U: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 9awwoKXfn6U: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 82%|██████████████████████████████████████████████████████████████████████████████████████▌ | 990/1212 [22:24<04:54, 1.33s/it]ERROR: [youtube] L9fN74reGGs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] L9fN74reGGs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 81%|█████████████████████████████████████████████████████████████████████████████████████▌ | 978/1212 [22:26<04:48, 1.23s/it]ERROR: [youtube] FocCGiIcvu4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] FocCGiIcvu4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 81%|█████████████████████████████████████████████████████████████████████████████████████▉ | 983/1212 [22:31<04:48, 1.26s/it]ERROR: [youtube] PwbmRw4qb_o: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] PwbmRw4qb_o: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 81%|██████████████████████████████████████████████████████████████████████████████████████▎ | 987/1212 [22:35<05:06, 1.36s/it]ERROR: [youtube] dGmFL6uHXlg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] dGmFL6uHXlg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 81%|█████████████████████████████████████████████████████████████████████████████████████▌ | 979/1212 [22:36<05:05, 1.31s/it]ERROR: [youtube] f9fWtTFdd5g: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] f9fWtTFdd5g: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 80%|█████████████████████████████████████████████████████████████████████████████████████▎ | 975/1212 [22:37<05:34, 1.41s/it]ERROR: [youtube] ZEJIbgf6Sv0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ZEJIbgf6Sv0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 80%|████████████████████████████████████████████████████████████████████████████████████▍ | 966/1212 [22:37<05:41, 1.39s/it]ERROR: [youtube] V-zuveK_QGQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] V-zuveK_QGQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 81%|██████████████████████████████████████████████████████████████████████████████████████▎ | 987/1212 [22:40<04:21, 1.16s/it]ERROR: [youtube] ndVBg0LJs0k: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ndVBg0LJs0k: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 82%|██████████████████████████████████████████████████████████████████████████████████████▊ | 992/1212 [22:40<05:32, 1.51s/it]ERROR: [youtube] zR-8v5JEhQw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] zR-8v5JEhQw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 81%|█████████████████████████████████████████████████████████████████████████████████████▉ | 982/1212 [22:42<04:27, 1.16s/it]ERROR: [youtube] fgM36vPE7Tk: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] fgM36vPE7Tk: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 80%|█████████████████████████████████████████████████████████████████████████████████████ | 972/1212 [22:47<06:46, 1.69s/it]ERROR: [youtube] HZn4AfsGUDQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] HZn4AfsGUDQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 81%|██████████████████████████████████████████████████████████████████████████████████████▎ | 987/1212 [22:50<04:37, 1.23s/it]ERROR: [youtube] Apka4NE4OP8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Apka4NE4OP8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 82%|██████████████████████████████████████████████████████████████████████████████████████▍ | 989/1212 [22:56<04:47, 1.29s/it]ERROR: [youtube] gUZHZTVat-U: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] gUZHZTVat-U: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 83%|███████████████████████████████████████████████████████████████████████████████████████▎ | 1008/1212 [23:03<05:24, 1.59s/it]ERROR: [youtube] amIWC4TTZO4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] amIWC4TTZO4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 82%|██████████████████████████████████████████████████████████████████████████████████████▍ | 989/1212 [23:04<05:45, 1.55s/it]ERROR: [youtube] T57pa_UPHKI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] T57pa_UPHKI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 83%|██████████████████████████████████████████████████████████████████████████████████████▋ | 1000/1212 [23:05<04:44, 1.34s/it]ERROR: [youtube] sSt2_fysnMI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] sSt2_fysnMI: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 81%|█████████████████████████████████████████████████████████████████████████████████████▉ | 982/1212 [23:10<11:35, 3.02s/it]ERROR: [youtube] BHwfY1_vn7A: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] BHwfY1_vn7A: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 84%|████████████████████████████████████████████████████████████████████████████████████████ | 1017/1212 [23:10<04:18, 1.33s/it]ERROR: [youtube] oypCZfzZ_50: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] oypCZfzZ_50: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 83%|███████████████████████████████████████████████████████████████████████████████████████▍ | 1009/1212 [23:12<04:25, 1.31s/it]ERROR: [youtube] NRnXNFCOruc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] NRnXNFCOruc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 83%|███████████████████████████████████████████████████████████████████████████████████████▌ | 1011/1212 [23:12<05:54, 1.76s/it]ERROR: [youtube] InHPRl8kl5c: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] InHPRl8kl5c: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 85%|█████████████████████████████████████████████████████████████████████████████████████████ | 1028/1212 [23:15<04:12, 1.37s/it]ERROR: [youtube] Fi7XdxRNOxM: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Fi7XdxRNOxM: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 84%|███████████████████████████████████████████████████████████████████████████████████████▊ | 1014/1212 [23:15<03:20, 1.01s/it]ERROR: [youtube] dqwvzC_PSm0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] dqwvzC_PSm0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 83%|███████████████████████████████████████████████████████████████████████████████████████▎ | 1008/1212 [23:17<04:08, 1.22s/it]ERROR: [youtube] a2uTYvN-NgQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] a2uTYvN-NgQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 83%|███████████████████████████████████████████████████████████████████████████████████████▋ | 1012/1212 [23:17<04:34, 1.37s/it]ERROR: [youtube] _LYw5PXDFrc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] _LYw5PXDFrc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 84%|████████████████████████████████████████████████████████████████████████████████████████▍ | 1021/1212 [23:25<04:28, 1.40s/it]ERROR: [youtube] co3FOnIf-S8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] co3FOnIf-S8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 83%|██████████████████████████████████████████████████████████████████████████████████████▉ | 1003/1212 [23:26<04:45, 1.36s/it]ERROR: [youtube] q2T7dt-R6Is: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] q2T7dt-R6Is: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 83%|███████████████████████████████████████████████████████████████████████████████████████▎ | 1008/1212 [23:26<04:08, 1.22s/it]ERROR: [youtube] rI3BIF7ocug: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] rI3BIF7ocug: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 84%|████████████████████████████████████████████████████████████████████████████████████████ | 1016/1212 [23:28<04:36, 1.41s/it]ERROR: [youtube] PB9yYgsE808: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] PB9yYgsE808: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 85%|█████████████████████████████████████████████████████████████████████████████████████████ | 1028/1212 [23:36<03:58, 1.30s/it]ERROR: [youtube] _GfsZ-ySaF8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] _GfsZ-ySaF8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 86%|██████████████████████████████████████████████████████████████████████████████████████████ | 1040/1212 [23:40<03:42, 1.29s/it]ERROR: [youtube] i6Xn-xMegG8: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] i6Xn-xMegG8: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 86%|█████████████████████████████████████████████████████████████████████████████████████████▊ | 1037/1212 [23:47<03:45, 1.29s/it]ERROR: [youtube] qHqdDe5eLmg: Private video. Sign in if you've been granted access to this video\n", " 85%|█████████████████████████████████████████████████████████████████████████████████████████▍ | 1032/1212 [23:48<04:04, 1.36s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] qHqdDe5eLmg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 84%|████████████████████████████████████████████████████████████████████████████████████████▎ | 1020/1212 [23:49<03:59, 1.25s/it]ERROR: [youtube] VXK5mAHB3Ww: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] VXK5mAHB3Ww: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 85%|█████████████████████████████████████████████████████████████████████████████████████████▍ | 1033/1212 [23:49<03:54, 1.31s/it]ERROR: [youtube] M5rUUAn4Rb0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] M5rUUAn4Rb0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 85%|█████████████████████████████████████████████████████████████████████████████████████████▊ | 1036/1212 [23:54<03:33, 1.21s/it]WARNING: [youtube] Failed to download m3u8 information: timed out\n", " 85%|████████████████████████████████████████████████████████████████████████████████████████▉ | 1026/1212 [23:54<03:49, 1.23s/it]ERROR: [youtube] 8uzKQykCmM0: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 8uzKQykCmM0: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 85%|█████████████████████████████████████████████████████████████████████████████████████████▋ | 1035/1212 [23:56<04:22, 1.48s/it]ERROR: [youtube] k0cqLR_9hl4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] k0cqLR_9hl4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 88%|████████████████████████████████████████████████████████████████████████████████████████████ | 1062/1212 [23:58<03:11, 1.28s/it]ERROR: [youtube] 71YZ-MmUHfs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 71YZ-MmUHfs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 86%|██████████████████████████████████████████████████████████████████████████████████████████▎ | 1043/1212 [24:03<04:12, 1.50s/it]ERROR: [youtube] stT6xF_H1Y0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] stT6xF_H1Y0: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 87%|███████████████████████████████████████████████████████████████████████████████████████████▋ | 1059/1212 [24:04<03:20, 1.31s/it]ERROR: [youtube] RzHgaocNkqM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] RzHgaocNkqM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 85%|█████████████████████████████████████████████████████████████████████████████████████████▍ | 1033/1212 [24:08<03:43, 1.25s/it]ERROR: [youtube] nvY5dzuVEtM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] nvY5dzuVEtM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 85%|█████████████████████████████████████████████████████████████████████████████████████████▍ | 1032/1212 [24:08<03:43, 1.24s/it]ERROR: [youtube] EdqV7NoorPo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] EdqV7NoorPo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 86%|██████████████████████████████████████████████████████████████████████████████████████████▎ | 1043/1212 [24:08<04:11, 1.49s/it]ERROR: [youtube] esWvhDSkKJU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] esWvhDSkKJU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 88%|████████████████████████████████████████████████████████████████████████████████████████████ | 1063/1212 [24:12<03:08, 1.27s/it]ERROR: [youtube] Y7-RDog6Ks4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Y7-RDog6Ks4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 86%|██████████████████████████████████████████████████████████████████████████████████████████▋ | 1047/1212 [24:12<03:48, 1.38s/it]ERROR: [youtube] MDfoSXluxCM: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] MDfoSXluxCM: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 87%|███████████████████████████████████████████████████████████████████████████████████████████▏ | 1052/1212 [24:17<03:30, 1.32s/it]ERROR: [youtube] 3h5VLA-61jE: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 3h5VLA-61jE: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 87%|███████████████████████████████████████████████████████████████████████████████████████████▋ | 1058/1212 [24:18<03:16, 1.28s/it]ERROR: [youtube] -plTT9lvOi4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] -plTT9lvOi4: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 88%|███████████████████████████████████████████████████████████████████████████████████████████▉ | 1061/1212 [24:21<03:14, 1.29s/it]ERROR: [youtube] dzOCdRPuhgg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] dzOCdRPuhgg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 86%|██████████████████████████████████████████████████████████████████████████████████████████▎ | 1042/1212 [24:21<04:24, 1.55s/it]ERROR: [youtube] MdCgWsgZ9qg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] MdCgWsgZ9qg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 88%|████████████████████████████████████████████████████████████████████████████████████████████▍ | 1067/1212 [24:26<03:21, 1.39s/it]ERROR: [youtube] d8nQ2dZBR48: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] d8nQ2dZBR48: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 87%|███████████████████████████████████████████████████████████████████████████████████████████▋ | 1058/1212 [24:29<03:37, 1.41s/it]ERROR: [youtube] 3-8qQeI_KxE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 3-8qQeI_KxE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 88%|████████████████████████████████████████████████████████████████████████████████████████████▌ | 1069/1212 [24:30<03:20, 1.40s/it]ERROR: [youtube] pyCX9zOqIJU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] pyCX9zOqIJU: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 87%|███████████████████████████████████████████████████████████████████████████████████████████ | 1051/1212 [24:35<04:24, 1.64s/it]ERROR: [youtube] IYuRj3QJTMA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] IYuRj3QJTMA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 88%|████████████████████████████████████████████████████████████████████████████████████████████ | 1063/1212 [24:41<03:26, 1.39s/it]ERROR: [youtube] nSBPAZWz04Y: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] nSBPAZWz04Y: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 88%|████████████████████████████████████████████████████████████████████████████████████████████▋ | 1070/1212 [24:44<03:20, 1.41s/it]ERROR: [youtube] KZCA9hmhA6o: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] KZCA9hmhA6o: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 89%|█████████████████████████████████████████████████████████████████████████████████████████████▏ | 1076/1212 [24:48<03:25, 1.51s/it]ERROR: [youtube] qSM6q4THyRY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] qSM6q4THyRY: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 90%|██████████████████████████████████████████████████████████████████████████████████████████████▊ | 1095/1212 [24:58<02:44, 1.41s/it]ERROR: [youtube] Y1x9rw-I_PA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Y1x9rw-I_PA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 90%|██████████████████████████████████████████████████████████████████████████████████████████████▌ | 1092/1212 [25:03<03:22, 1.69s/it]ERROR: [youtube] U9KQhhVBGOw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] U9KQhhVBGOw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 90%|██████████████████████████████████████████████████████████████████████████████████████████████▎ | 1089/1212 [25:09<02:47, 1.36s/it]ERROR: [youtube] 9VTPASf2kd8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 9VTPASf2kd8: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 91%|███████████████████████████████████████████████████████████████████████████████████████████████▎ | 1100/1212 [25:13<02:45, 1.48s/it]ERROR: [youtube] N_BKaKdR-oE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] N_BKaKdR-oE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 90%|█████████████████████████████████████████████████████████████████████████████████████████████▉ | 1085/1212 [25:15<03:22, 1.59s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "ERROR: [youtube] 96rhjzVE2IA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 96rhjzVE2IA: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 91%|███████████████████████████████████████████████████████████████████████████████████████████████▍ | 1102/1212 [25:21<05:30, 3.01s/it]ERROR: [youtube] on1HqLywlRU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] on1HqLywlRU: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 90%|██████████████████████████████████████████████████████████████████████████████████████████████▊ | 1094/1212 [25:23<03:52, 1.97s/it]ERROR: [youtube] qKL1BE6palM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] qKL1BE6palM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 89%|█████████████████████████████████████████████████████████████████████████████████████████████ | 1074/1212 [25:28<03:11, 1.39s/it]ERROR: [youtube] 1OHfgMV8drg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 1OHfgMV8drg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 90%|██████████████████████████████████████████████████████████████████████████████████████████████▏ | 1087/1212 [25:29<02:55, 1.40s/it]ERROR: [youtube] 9di2V_1L6Sc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 9di2V_1L6Sc: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 91%|███████████████████████████████████████████████████████████████████████████████████████████████▉ | 1107/1212 [25:29<02:45, 1.58s/it]ERROR: [youtube] Iz4Ex-43Wls: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Iz4Ex-43Wls: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 90%|██████████████████████████████████████████████████████████████████████████████████████████████▋ | 1093/1212 [25:34<02:26, 1.23s/it]ERROR: [youtube] f8U76cw8GwE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] f8U76cw8GwE: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 91%|███████████████████████████████████████████████████████████████████████████████████████████████ | 1097/1212 [25:37<02:38, 1.38s/it]ERROR: [youtube] kdeyMZSoOrs: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] kdeyMZSoOrs: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 92%|████████████████████████████████████████████████████████████████████████████████████████████████ | 1109/1212 [25:37<02:13, 1.30s/it]ERROR: [youtube] 0AAXK4M7Jsw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 0AAXK4M7Jsw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 91%|███████████████████████████████████████████████████████████████████████████████████████████████▉ | 1108/1212 [25:37<02:08, 1.23s/it]ERROR: [youtube] _eatmuPA1Ek: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] _eatmuPA1Ek: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 92%|████████████████████████████████████████████████████████████████████████████████████████████████▎ | 1111/1212 [25:40<02:01, 1.21s/it]ERROR: [youtube] FIAUeCaLK4Q: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] FIAUeCaLK4Q: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 94%|██████████████████████████████████████████████████████████████████████████████████████████████████▍ | 1136/1212 [25:42<01:49, 1.44s/it]ERROR: [youtube] wjKfJAnw6_s: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n", " 92%|████████████████████████████████████████████████████████████████████████████████████████████████ | 1109/1212 [25:42<02:27, 1.43s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] wjKfJAnw6_s: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 92%|████████████████████████████████████████████████████████████████████████████████████████████████▉ | 1119/1212 [25:43<02:37, 1.70s/it]ERROR: [youtube] OMIZcyMgD3E: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] OMIZcyMgD3E: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 92%|████████████████████████████████████████████████████████████████████████████████████████████████▎ | 1111/1212 [25:47<02:26, 1.45s/it]ERROR: [youtube] Yh0W_oGYtn4: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Yh0W_oGYtn4: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 89%|█████████████████████████████████████████████████████████████████████████████████████████████▊ | 1083/1212 [25:57<02:35, 1.20s/it]ERROR: [youtube] ZtV5tCoLL80: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ZtV5tCoLL80: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 93%|█████████████████████████████████████████████████████████████████████████████████████████████████▍ | 1125/1212 [25:57<01:39, 1.14s/it]ERROR: [youtube] tGuosBTeZ5c: Video unavailable. This video has been removed by the uploader\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] tGuosBTeZ5c: Video unavailable. This video has been removed by the uploader\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 95%|███████████████████████████████████████████████████████████████████████████████████████████████████▋ | 1151/1212 [26:00<01:11, 1.18s/it]ERROR: [youtube] 1-ThIhR6cE4: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 1-ThIhR6cE4: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 93%|█████████████████████████████████████████████████████████████████████████████████████████████████▌ | 1126/1212 [26:03<01:43, 1.20s/it]ERROR: [youtube] LRjv8vrAr4I: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] LRjv8vrAr4I: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 94%|██████████████████████████████████████████████████████████████████████████████████████████████████▌ | 1138/1212 [26:05<01:28, 1.20s/it]ERROR: [youtube] qXA-zmUsYHQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] qXA-zmUsYHQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 95%|████████████████████████████████████████████████████████████████████████████████████████████████████ | 1155/1212 [26:06<01:12, 1.27s/it]ERROR: [youtube] 3abHSWhpSew: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 3abHSWhpSew: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 93%|█████████████████████████████████████████████████████████████████████████████████████████████████▊ | 1129/1212 [26:08<01:44, 1.26s/it]ERROR: [youtube] ZFp35nJ01sQ: Video unavailable. This video has been removed by the uploader\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ZFp35nJ01sQ: Video unavailable. This video has been removed by the uploader" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 92%|████████████████████████████████████████████████████████████████████████████████████████████████▋ | 1116/1212 [26:08<02:55, 1.83s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 93%|█████████████████████████████████████████████████████████████████████████████████████████████████▉ | 1131/1212 [26:11<02:09, 1.60s/it]ERROR: [youtube] DxoyqMgQYZM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] DxoyqMgQYZM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 94%|██████████████████████████████████████████████████████████████████████████████████████████████████▌ | 1138/1212 [26:11<02:11, 1.78s/it]ERROR: [youtube] iUpqjAP25EA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] iUpqjAP25EA: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 94%|███████████████████████████████████████████████████████████████████████████████████████████████████ | 1143/1212 [26:15<01:35, 1.38s/it]ERROR: [youtube] jMGyWgU5uHQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] jMGyWgU5uHQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 93%|█████████████████████████████████████████████████████████████████████████████████████████████████▉ | 1131/1212 [26:21<01:40, 1.24s/it]ERROR: [youtube] ebuGyW_EJeI: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ebuGyW_EJeI: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 94%|███████████████████████████████████████████████████████████████████████████████████████████████████ | 1143/1212 [26:27<01:32, 1.35s/it]ERROR: [youtube] qmTXRjhtmwk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] qmTXRjhtmwk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 94%|██████████████████████████████████████████████████████████████████████████████████████████████████▊ | 1141/1212 [26:29<01:32, 1.30s/it]ERROR: [youtube] VBDddJcXFZQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] VBDddJcXFZQ: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ "\r", " 93%|█████████████████████████████████████████████████████████████████████████████████████████████████▉ | 1130/1212 [26:30<01:43, 1.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 95%|███████████████████████████████████████████████████████████████████████████████████████████████████▉ | 1153/1212 [26:29<01:16, 1.30s/it]ERROR: [youtube] ST0G3lAufcs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ST0G3lAufcs: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 92%|████████████████████████████████████████████████████████████████████████████████████████████████▊ | 1118/1212 [26:30<01:55, 1.23s/it]ERROR: [youtube] _iQK9faFqIw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] _iQK9faFqIw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 95%|███████████████████████████████████████████████████████████████████████████████████████████████████▉ | 1153/1212 [26:38<01:40, 1.71s/it]ERROR: [youtube] dseENxKwez0: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] dseENxKwez0: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 95%|███████████████████████████████████████████████████████████████████████████████████████████████████▋ | 1151/1212 [26:43<01:18, 1.29s/it]ERROR: [youtube] E-KkP0osxac: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] E-KkP0osxac: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 96%|████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 1161/1212 [26:48<01:19, 1.55s/it]ERROR: [youtube] FnLfvfbynVg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] FnLfvfbynVg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 96%|████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 1164/1212 [26:48<00:59, 1.24s/it]ERROR: [youtube] uI1Zt_09XCU: Video unavailable. This video contains content from Media Prima Malaysia, who has blocked it on copyright grounds\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] uI1Zt_09XCU: Video unavailable. This video contains content from Media Prima Malaysia, who has blocked it on copyright grounds\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 94%|███████████████████████████████████████████████████████████████████████████████████████████████████▏ | 1145/1212 [26:50<01:15, 1.12s/it]ERROR: [youtube] IWSvknh_Xyo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] IWSvknh_Xyo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 96%|████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 1161/1212 [26:51<01:04, 1.27s/it]ERROR: [youtube] mgL4nID44pI: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] mgL4nID44pI: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 97%|█████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 1170/1212 [26:52<00:53, 1.28s/it]ERROR: [youtube] yXIQolZpq0M: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] yXIQolZpq0M: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 96%|████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 1160/1212 [26:54<01:05, 1.26s/it]ERROR: [youtube] H9wWv4c948A: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] H9wWv4c948A: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 95%|███████████████████████████████████████████████████████████████████████████████████████████████████▋ | 1150/1212 [26:54<01:46, 1.72s/it]ERROR: [youtube] 4k_FWiV9Wrw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 4k_FWiV9Wrw: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 96%|████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 1159/1212 [26:57<01:26, 1.63s/it]ERROR: [youtube] N0ZkWhJnWh0: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] N0ZkWhJnWh0: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 97%|█████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 1170/1212 [26:57<00:52, 1.24s/it]ERROR: [youtube] XgFp3_J3rLY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] XgFp3_J3rLY: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 96%|████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 1161/1212 [27:07<01:16, 1.50s/it]ERROR: [youtube] r3OqKJmGE8A: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] r3OqKJmGE8A: Private video. Sign in if you've been granted access to this video" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 98%|██████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 1182/1212 [27:07<00:36, 1.23s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 96%|█████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 1168/1212 [27:09<00:54, 1.23s/it]ERROR: [youtube] wxFGd7PJVVg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] wxFGd7PJVVg: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 97%|█████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 1172/1212 [27:11<00:49, 1.25s/it]ERROR: [youtube] P_6Sx-UQkNc: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] P_6Sx-UQkNc: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 97%|██████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 1181/1212 [27:12<00:48, 1.56s/it]ERROR: [youtube] CWuxRZAdEOo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] CWuxRZAdEOo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 97%|█████████████████████████████████████████████████████████████████████████████████████████████████████▌ | 1172/1212 [27:13<00:44, 1.11s/it]ERROR: [youtube] gRagkJRdHQQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] gRagkJRdHQQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 98%|███████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 1192/1212 [27:21<00:27, 1.40s/it]ERROR: [youtube] ptA9WN6zf7g: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ptA9WN6zf7g: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 97%|█████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 1170/1212 [27:23<00:53, 1.28s/it]ERROR: [youtube] LD5SG8z90ys: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] LD5SG8z90ys: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:25<00:00, 1.36s/it]\n", "100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1/1 [00:01<00:00, 1.73s/it]\n", " 98%|██████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 1185/1212 [27:28<00:35, 1.32s/it]ERROR: [youtube] l55-bVu1-8Y: Private video. Sign in if you've been granted access to this video\n", " 99%|███████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 1198/1212 [27:28<00:17, 1.27s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] l55-bVu1-8Y: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 99%|████████████████████████████████████████████████████████████████████████████████████████████████████████▏| 1202/1212 [27:30<00:12, 1.21s/it]ERROR: [youtube] E3dJ0RlOHqo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] E3dJ0RlOHqo: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 98%|███████████████████████████████████████████████████████████████████████████████████████████████████████▎ | 1193/1212 [27:31<00:29, 1.58s/it]ERROR: [youtube] jENO7WEc-K4: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] jENO7WEc-K4: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 99%|███████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 1199/1212 [27:35<00:21, 1.66s/it]ERROR: [youtube] whfRcUj3irs: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] whfRcUj3irs: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 97%|█████████████████████████████████████████████████████████████████████████████████████████████████████▉ | 1177/1212 [27:38<00:43, 1.25s/it]ERROR: [youtube] 3PQOMTWAfCM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] 3PQOMTWAfCM: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 98%|██████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 1185/1212 [27:41<00:35, 1.30s/it]ERROR: [youtube] xpRkhAhp7wE: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n", " 99%|███████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 1194/1212 [27:41<00:32, 1.78s/it]" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] xpRkhAhp7wE: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:42<00:00, 1.37s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:42<00:00, 1.37s/it]\n", " 98%|███████████████████████████████████████████████████████████████████████████████████████████████████████ | 1190/1212 [27:45<00:27, 1.27s/it]ERROR: [youtube] rovdBFDGCrQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] rovdBFDGCrQ: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 99%|███████████████████████████████████████████████████████████████████████████████████████████████████████▊ | 1198/1212 [27:45<00:17, 1.28s/it]ERROR: [youtube] -X_PldXt-XQ: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] -X_PldXt-XQ: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:48<00:00, 1.38s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:48<00:00, 1.38s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:48<00:00, 1.38s/it]\n", " 98%|██████████████████████████████████████████████████████████████████████████████████████████████████████▋ | 1186/1212 [27:49<00:33, 1.29s/it]ERROR: [youtube] RoFXCptE9og: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] RoFXCptE9og: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:49<00:00, 1.38s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:50<00:00, 1.38s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:50<00:00, 1.38s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:50<00:00, 1.38s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:52<00:00, 1.38s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:53<00:00, 1.38s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:54<00:00, 1.38s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:54<00:00, 1.38s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:54<00:00, 1.38s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:55<00:00, 1.38s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:55<00:00, 1.38s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:55<00:00, 1.38s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:56<00:00, 1.38s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:58<00:00, 1.38s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [27:58<00:00, 1.39s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:00<00:00, 1.39s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:00<00:00, 1.39s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:00<00:00, 1.39s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:01<00:00, 1.39s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:01<00:00, 1.39s/it]\n", " 99%|████████████████████████████████████████████████████████████████████████████████████████████████████████▏| 1202/1212 [28:01<00:12, 1.25s/it]ERROR: [youtube] Gnxp3E4QUQk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] Gnxp3E4QUQk: Private video. Sign in if you've been granted access to this video\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " 99%|████████████████████████████████████████████████████████████████████████████████████████████████████████▏| 1203/1212 [28:02<00:10, 1.20s/it]ERROR: [youtube] ewiYCU5s1U0: Video unavailable\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] ewiYCU5s1U0: Video unavailable\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:03<00:00, 1.39s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:03<00:00, 1.39s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:04<00:00, 1.39s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:05<00:00, 1.39s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:06<00:00, 1.39s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:07<00:00, 1.39s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:08<00:00, 1.39s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:08<00:00, 1.39s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:13<00:00, 1.40s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:14<00:00, 1.40s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:14<00:00, 1.40s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:14<00:00, 1.40s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:14<00:00, 1.40s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:16<00:00, 1.40s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:17<00:00, 1.40s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:17<00:00, 1.40s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:18<00:00, 1.40s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:21<00:00, 1.40s/it]\n", " 99%|███████████████████████████████████████████████████████████████████████████████████████████████████████▍ | 1194/1212 [28:22<00:25, 1.41s/it]ERROR: [youtube] W0ktZG7zAdQ: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ERROR: [youtube] W0ktZG7zAdQ: Video unavailable. This video is no longer available because the YouTube account associated with this video has been terminated.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:22<00:00, 1.40s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:23<00:00, 1.41s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:25<00:00, 1.41s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:36<00:00, 1.42s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:36<00:00, 1.42s/it]\n", "100%|█████████████████████████████████████████████████████████████████████████████████████████████████████████| 1212/1212 [28:43<00:00, 1.42s/it]\n" ] } ], "source": [ "out = mp.multiprocessing(list(urls), loop, cores = 50, returned = True)" ] }, { "cell_type": "code", "execution_count": 24, "id": "a4915288", "metadata": {}, "outputs": [], "source": [ "with open('files.json', 'w') as fopen:\n", " json.dump(out, fopen)" ] }, { "cell_type": "code", "execution_count": 25, "id": "ad90a38d", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "59879" ] }, "execution_count": 25, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(out)" ] }, { "cell_type": "code", "execution_count": 26, "id": "5fc79291", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'url': 'https://www.youtube.com/watch?v=A4gznd2kBpo',\n", " 'filename': 'audio/LEADER KENTANG TIKTOK | NETIZEN GELI DRAMA TEAM INFLUENCER [A4gznd2kBpo].mp3'}" ] }, "execution_count": 26, "metadata": {}, "output_type": "execute_result" } ], "source": [ "out[0]" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.10" } }, "nbformat": 4, "nbformat_minor": 5 }