Skip to content
Permalink
45bcdacc71
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
31919 lines (31919 sloc) 835 KB
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import os\n",
"import shutil\n",
"import json\n",
"from pytube import YouTube\n",
"from moviepy.editor import *\n",
"from moviepy.video.io.VideoFileClip import VideoFileClip\n",
"import moviepy.editor as mpy\n",
"import tqdm"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"root = \"./data/MS-ASL\""
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"with open(os.path.join(root, \"MSASL_train.json\")) as f:\n",
" train_data = json.load(f)\n",
"\n",
"with open(os.path.join(root, \"MSASL_test.json\")) as f:\n",
" test_data = json.load(f)\n",
"\n",
"with open(os.path.join(root, \"MSASL_val.json\")) as f:\n",
" val_data = json.load(f)\n",
"\n",
"with open(os.path.join(root, \"MSASL_classes.json\")) as f:\n",
" classes = json.load(f)"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"def create_subset(n, dataset):\n",
" data = []\n",
"\n",
" for entry in dataset:\n",
" if entry[\"label\"] < n:\n",
" data.append(entry)\n",
" \n",
" return data\n",
"\n",
"\n",
"test_data100 = create_subset(100, test_data)\n",
"train_data100 = create_subset(100, train_data)\n",
"val_data100 = create_subset(100, val_data)\n",
" \n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"107"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"test_set = set()\n",
"for entry in test_data100:\n",
" test_set.add(entry[\"clean_text\"])\n",
"\n",
"train_set = set()\n",
"for entry in train_data100:\n",
" train_set.add(entry[\"clean_text\"])\n",
"\n",
"val_set = set()\n",
"for entry in val_data100:\n",
" val_set.add(entry[\"clean_text\"])\n",
"\n",
"#find the intersection of the three sets"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [],
"source": [
"def download_videos(data,n):\n",
" SAVE_PATH = f\"./videos/test-MS-ASL{n}\"\n",
" untrimmed_path = SAVE_PATH + \"/untrimmed_videos\"\n",
"\n",
" if not os.path.exists(SAVE_PATH):\n",
" os.makedirs(SAVE_PATH)\n",
" \n",
" if not os.path.exists(untrimmed_path):\n",
" os.makedirs(untrimmed_path)\n",
" \n",
" print(len(data))\n",
" \n",
"\n",
" for i in range(len(data)):\n",
" try:\n",
" url = data[i]['url']\n",
" print(i, \"ur\", url)\n",
" start_time = data[i]['start_time']\n",
" end_time = data[i]['end_time']\n",
" label = data[i]['label']\n",
"\n",
" pretitle = data[i]['clean_text']\n",
" video_title = pretitle + str(i) + \".mp4\"\n",
"\n",
" if not os.path.exists(SAVE_PATH + \"/\" + pretitle):\n",
" os.makedirs(SAVE_PATH + \"/\" + pretitle)\n",
"\n",
" \n",
" print(\"folder created\")\n",
" yt = YouTube(url)\n",
" stream = yt.streams.filter(progressive=True, file_extension='mp4').order_by('resolution').desc().first()\n",
" stream.download(os.path.join(untrimmed_path, pretitle), filename=video_title)\n",
" \n",
" clip = VideoFileClip(untrimmed_path + \"/\" + pretitle + \"/\" + video_title).subclip(start_time, end_time)\n",
" print(\"trimmed\")\n",
" clip.write_videofile(SAVE_PATH + \"/\" + pretitle + \"/\" + video_title)\n",
" clip.close()\n",
" print(f\"Task completed\")\n",
" \n",
" except Exception as e:\n",
" print(e)\n",
"\n",
"\n",
"\n",
" "
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"1190\n",
"0 ur www.youtube.com/watch?v=l31UXgChCS4\n",
"folder created\n",
"l31UXgChCS4 is unavailable\n",
"1 ur https://www.youtube.com/watch?v=TR9M0q7iWxY\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/big/big1.mp4.\n",
"MoviePy - Writing audio in big1TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/big/big1.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/big/big1.mp4\n",
"Task completed\n",
"2 ur www.youtube.com/watch?v=PWGruSSI30c\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"PWGruSSI30c is a private video\n",
"3 ur www.youtube.com/watch?v=1JKqWk5UeQY\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bathroom/bathroom3.mp4.\n",
"MoviePy - Writing audio in bathroom3TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bathroom/bathroom3.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/bathroom/bathroom3.mp4\n",
"Task completed\n",
"4 ur https://www.youtube.com/watch?v=nhEw0JSb-XQ\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/table/table4.mp4.\n",
"MoviePy - Writing audio in table4TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/table/table4.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/table/table4.mp4\n",
"Task completed\n",
"5 ur https://www.youtube.com/watch?v=mI0ROkSQ7ME\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"mI0ROkSQ7ME is a private video\n",
"6 ur https://www.youtube.com/watch?v=mI0ROkSQ7ME\n",
"folder created\n",
"mI0ROkSQ7ME is a private video\n",
"7 ur https://www.youtube.com/watch?v=mI0ROkSQ7ME\n",
"folder created\n",
"mI0ROkSQ7ME is a private video\n",
"8 ur https://www.youtube.com/watch?v=QPoLOz0dkG8\n",
"folder created\n",
"QPoLOz0dkG8 is unavailable\n",
"9 ur www.youtube.com/watch?v=Kl-MGSf9U3s\n",
"folder created\n",
"Kl-MGSf9U3s is unavailable\n",
"10 ur https://www.youtube.com/watch?v=koMZVbqiXf4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/walk/walk10.mp4.\n",
"MoviePy - Writing audio in walk10TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/walk/walk10.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/walk/walk10.mp4\n",
"Task completed\n",
"11 ur https://www.youtube.com/watch?v=koMZVbqiXf4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/here/here11.mp4.\n",
"MoviePy - Writing audio in here11TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/here/here11.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/here/here11.mp4\n",
"Task completed\n",
"12 ur https://www.youtube.com/watch?v=koMZVbqiXf4\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/white/white12.mp4.\n",
"MoviePy - Writing audio in white12TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/white/white12.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/white/white12.mp4\n",
"Task completed\n",
"13 ur https://www.youtube.com/watch?v=koMZVbqiXf4\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/black/black13.mp4.\n",
"MoviePy - Writing audio in black13TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/black/black13.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/black/black13.mp4\n",
"Task completed\n",
"14 ur https://www.youtube.com/watch?v=koMZVbqiXf4\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yellow/yellow14.mp4.\n",
"MoviePy - Writing audio in yellow14TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yellow/yellow14.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/yellow/yellow14.mp4\n",
"Task completed\n",
"15 ur https://www.youtube.com/watch?v=koMZVbqiXf4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/orange/orange15.mp4.\n",
"MoviePy - Writing audio in orange15TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/orange/orange15.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/orange/orange15.mp4\n",
"Task completed\n",
"16 ur https://www.youtube.com/watch?v=koMZVbqiXf4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/red/red16.mp4.\n",
"MoviePy - Writing audio in red16TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/red/red16.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/red/red16.mp4\n",
"Task completed\n",
"17 ur https://www.youtube.com/watch?v=koMZVbqiXf4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/pink/pink17.mp4.\n",
"MoviePy - Writing audio in pink17TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/pink/pink17.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/pink/pink17.mp4\n",
"Task completed\n",
"18 ur https://www.youtube.com/watch?v=koMZVbqiXf4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/blue/blue18.mp4.\n",
"MoviePy - Writing audio in blue18TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/blue/blue18.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/blue/blue18.mp4\n",
"Task completed\n",
"19 ur https://www.youtube.com/watch?v=koMZVbqiXf4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/green/green19.mp4.\n",
"MoviePy - Writing audio in green19TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/green/green19.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/green/green19.mp4\n",
"Task completed\n",
"20 ur https://www.youtube.com/watch?v=koMZVbqiXf4\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/brown/brown20.mp4.\n",
"MoviePy - Writing audio in brown20TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/brown/brown20.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/brown/brown20.mp4\n",
"Task completed\n",
"21 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"22 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n",
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"23 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n",
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"24 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n",
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"25 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n",
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"26 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n",
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"27 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n",
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"28 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n",
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"29 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n",
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"30 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n",
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"31 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n",
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"32 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n",
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"33 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n",
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"34 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n",
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"35 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n",
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"36 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n",
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"37 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n",
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"38 ur https://www.youtube.com/watch?v=GOczM9jk2xY\n",
"folder created\n",
"GOczM9jk2xY is age restricted, and can't be accessed without logging in.\n",
"39 ur https://www.youtube.com/watch?v=0HvgswZfDGI\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/no/no39.mp4.\n",
"MoviePy - Writing audio in no39TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/no/no39.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/no/no39.mp4\n",
"Task completed\n",
"40 ur https://www.youtube.com/watch?v=iR6M4P6XqB0\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/doctor/doctor40.mp4.\n",
"MoviePy - Writing audio in doctor40TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/doctor/doctor40.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/doctor/doctor40.mp4\n",
"Task completed\n",
"41 ur https://www.youtube.com/watch?v=iR6M4P6XqB0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nurse/nurse41.mp4.\n",
"MoviePy - Writing audio in nurse41TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nurse/nurse41.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nurse/nurse41.mp4\n",
"Task completed\n",
"42 ur https://www.youtube.com/watch?v=iR6M4P6XqB0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/teacher/teacher42.mp4.\n",
"MoviePy - Writing audio in teacher42TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/teacher/teacher42.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/teacher/teacher42.mp4\n",
"Task completed\n",
"43 ur www.youtube.com/watch?v=Z8KGV-41MFQ\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/grandmother/grandmother43.mp4.\n",
"MoviePy - Writing audio in grandmother43TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/grandmother/grandmother43.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/grandmother/grandmother43.mp4\n",
"Task completed\n",
"44 ur https://www.youtube.com/watch?v=x28Kk_NjEGU\n",
"folder created\n",
"x28Kk_NjEGU is a private video\n",
"45 ur https://www.youtube.com/watch?v=x28Kk_NjEGU\n",
"folder created\n",
"x28Kk_NjEGU is a private video\n",
"46 ur https://www.youtube.com/watch?v=x28Kk_NjEGU\n",
"folder created\n",
"x28Kk_NjEGU is a private video\n",
"47 ur https://www.youtube.com/watch?v=x28Kk_NjEGU\n",
"folder created\n",
"x28Kk_NjEGU is a private video\n",
"48 ur https://www.youtube.com/watch?v=x28Kk_NjEGU\n",
"folder created\n",
"x28Kk_NjEGU is a private video\n",
"49 ur https://www.youtube.com/watch?v=x28Kk_NjEGU\n",
"folder created\n",
"x28Kk_NjEGU is a private video\n",
"50 ur https://www.youtube.com/watch?v=x28Kk_NjEGU\n",
"folder created\n",
"x28Kk_NjEGU is a private video\n",
"51 ur https://www.youtube.com/watch?v=x28Kk_NjEGU\n",
"folder created\n",
"x28Kk_NjEGU is a private video\n",
"52 ur https://www.youtube.com/watch?v=x28Kk_NjEGU\n",
"folder created\n",
"x28Kk_NjEGU is a private video\n",
"53 ur https://www.youtube.com/watch?v=x28Kk_NjEGU\n",
"folder created\n",
"x28Kk_NjEGU is a private video\n",
"54 ur https://www.youtube.com/watch?v=x28Kk_NjEGU\n",
"folder created\n",
"x28Kk_NjEGU is a private video\n",
"55 ur https://www.youtube.com/watch?v=x28Kk_NjEGU\n",
"folder created\n",
"x28Kk_NjEGU is a private video\n",
"56 ur https://www.youtube.com/watch?v=x28Kk_NjEGU\n",
"folder created\n",
"x28Kk_NjEGU is a private video\n",
"57 ur https://www.youtube.com/watch?v=chUNuSYnCck\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sign/sign57.mp4.\n",
"MoviePy - Writing audio in sign57TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sign/sign57.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sign/sign57.mp4\n",
"Task completed\n",
"58 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/night/night58.mp4.\n",
"MoviePy - Writing audio in night58TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/night/night58.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/night/night58.mp4\n",
"Task completed\n",
"59 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/happy/happy59.mp4.\n",
"MoviePy - Writing audio in happy59TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/happy/happy59.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/happy/happy59.mp4\n",
"Task completed\n",
"60 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/happy/happy60.mp4.\n",
"MoviePy - Writing audio in happy60TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/happy/happy60.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/happy/happy60.mp4\n",
"Task completed\n",
"61 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/happy/happy61.mp4.\n",
"MoviePy - Writing audio in happy61TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/happy/happy61.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/happy/happy61.mp4\n",
"Task completed\n",
"62 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/happy/happy62.mp4.\n",
"MoviePy - Writing audio in happy62TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/happy/happy62.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/happy/happy62.mp4\n",
"Task completed\n",
"63 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sad/sad63.mp4.\n",
"MoviePy - Writing audio in sad63TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sad/sad63.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sad/sad63.mp4\n",
"Task completed\n",
"64 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hungry/hungry64.mp4.\n",
"MoviePy - Writing audio in hungry64TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hungry/hungry64.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hungry/hungry64.mp4\n",
"Task completed\n",
"65 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hungry/hungry65.mp4.\n",
"MoviePy - Writing audio in hungry65TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hungry/hungry65.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hungry/hungry65.mp4\n",
"Task completed\n",
"66 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/tired/tired66.mp4.\n",
"MoviePy - Writing audio in tired66TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/tired/tired66.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/tired/tired66.mp4\n",
"Task completed\n",
"67 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/tired/tired67.mp4.\n",
"MoviePy - Writing audio in tired67TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/tired/tired67.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/tired/tired67.mp4\n",
"Task completed\n",
"68 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sick/sick68.mp4.\n",
"MoviePy - Writing audio in sick68TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sick/sick68.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sick/sick68.mp4\n",
"Task completed\n",
"69 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sick/sick69.mp4.\n",
"MoviePy - Writing audio in sick69TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sick/sick69.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sick/sick69.mp4\n",
"Task completed\n",
"70 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/like/like70.mp4.\n",
"MoviePy - Writing audio in like70TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/like/like70.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/like/like70.mp4\n",
"Task completed\n",
"71 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/like/like71.mp4.\n",
"MoviePy - Writing audio in like71TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/like/like71.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/like/like71.mp4\n",
"Task completed\n",
"72 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/want/want72.mp4.\n",
"MoviePy - Writing audio in want72TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/want/want72.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/want/want72.mp4\n",
"Task completed\n",
"73 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/want/want73.mp4.\n",
"MoviePy - Writing audio in want73TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/want/want73.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/want/want73.mp4\n",
"Task completed\n",
"74 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/know/know74.mp4.\n",
"MoviePy - Writing audio in know74TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/know/know74.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/know/know74.mp4\n",
"Task completed\n",
"75 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/know/know75.mp4.\n",
"MoviePy - Writing audio in know75TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/know/know75.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/know/know75.mp4\n",
"Task completed\n",
"76 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/how/how76.mp4.\n",
"MoviePy - Writing audio in how76TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/how/how76.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/how/how76.mp4\n",
"Task completed\n",
"77 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/how/how77.mp4.\n",
"MoviePy - Writing audio in how77TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/how/how77.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/how/how77.mp4\n",
"Task completed\n",
"78 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/how/how78.mp4.\n",
"MoviePy - Writing audio in how78TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/how/how78.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/how/how78.mp4\n",
"Task completed\n",
"79 ur https://www.youtube.com/watch?v=CxTSVyM-ij0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/how/how79.mp4.\n",
"MoviePy - Writing audio in how79TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/how/how79.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/how/how79.mp4\n",
"Task completed\n",
"80 ur https://www.youtube.com/watch?v=qom1zfdv0fM\n",
"folder created\n",
"qom1zfdv0fM is unavailable\n",
"81 ur https://www.youtube.com/watch?v=KkIZgjMaWpg\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/computer/computer81.mp4.\n",
"MoviePy - Writing audio in computer81TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/computer/computer81.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/computer/computer81.mp4\n",
"Task completed\n",
"82 ur https://www.youtube.com/watch?v=1b2TXYk0jbM\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/family/family82.mp4.\n",
"MoviePy - Writing audio in family82TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/family/family82.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/family/family82.mp4\n",
"Task completed\n",
"83 ur https://www.youtube.com/watch?v=1b2TXYk0jbM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/go/go83.mp4.\n",
"MoviePy - Writing audio in go83TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/go/go83.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/go/go83.mp4\n",
"Task completed\n",
"84 ur https://www.youtube.com/watch?v=1b2TXYk0jbM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/where/where84.mp4.\n",
"MoviePy - Writing audio in where84TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/where/where84.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/where/where84.mp4\n",
"Task completed\n",
"85 ur https://www.youtube.com/watch?v=6cqY0BbfE80\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/lost/lost85.mp4.\n",
"MoviePy - Writing audio in lost85TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/lost/lost85.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/lost/lost85.mp4\n",
"Task completed\n",
"86 ur https://www.youtube.com/watch?v=6cqY0BbfE80\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/lost/lost86.mp4.\n",
"MoviePy - Writing audio in lost86TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/lost/lost86.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/lost/lost86.mp4\n",
"Task completed\n",
"87 ur www.youtube.com/watch?v=JV5uq2ITsh4\n",
"folder created\n",
"JV5uq2ITsh4 is a private video\n",
"88 ur www.youtube.com/watch?v=vUakbqo-1uM\n",
"folder created\n",
"vUakbqo-1uM is unavailable\n",
"89 ur https://www.youtube.com/watch?v=Nc7rSopCpI8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/drink/drink89.mp4.\n",
"MoviePy - Writing audio in drink89TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/drink/drink89.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/drink/drink89.mp4\n",
"Task completed\n",
"90 ur www.youtube.com/watch?v=AW2kJeqxKds\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/milk/milk90.mp4.\n",
"MoviePy - Writing audio in milk90TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/milk/milk90.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/milk/milk90.mp4\n",
"Task completed\n",
"91 ur www.youtube.com/watch?v=IgsMkNFA5DM\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"IgsMkNFA5DM is a private video\n",
"92 ur www.youtube.com/watch?v=C6C0n0yL0lE\n",
"folder created\n",
"C6C0n0yL0lE is unavailable\n",
"93 ur https://www.youtube.com/watch?v=rAt2RWv-M28\n",
"folder created\n",
"rAt2RWv-M28 is a private video\n",
"94 ur https://www.youtube.com/watch?v=creSIQ3owuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/milk/milk94.mp4.\n",
"MoviePy - Writing audio in milk94TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/milk/milk94.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/milk/milk94.mp4\n",
"Task completed\n",
"95 ur https://www.youtube.com/watch?v=JDc62QM6-GU\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/finish/finish95.mp4.\n",
"MoviePy - Writing audio in finish95TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/finish/finish95.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/finish/finish95.mp4\n",
"Task completed\n",
"96 ur https://www.youtube.com/watch?v=wiXtgEnJjMA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/green/green96.mp4.\n",
"MoviePy - Writing audio in green96TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/green/green96.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/green/green96.mp4\n",
"Task completed\n",
"97 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/woman/woman97.mp4.\n",
"MoviePy - Writing audio in woman97TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/woman/woman97.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/woman/woman97.mp4\n",
"Task completed\n",
"98 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/woman/woman98.mp4.\n",
"MoviePy - Writing audio in woman98TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/woman/woman98.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/woman/woman98.mp4\n",
"Task completed\n",
"99 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/man/man99.mp4.\n",
"MoviePy - Writing audio in man99TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/man/man99.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/man/man99.mp4\n",
"Task completed\n",
"100 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/man/man100.mp4.\n",
"MoviePy - Writing audio in man100TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/man/man100.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/man/man100.mp4\n",
"Task completed\n",
"101 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/lost/lost101.mp4.\n",
"MoviePy - Writing audio in lost101TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/lost/lost101.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/lost/lost101.mp4\n",
"Task completed\n",
"102 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/lost/lost102.mp4.\n",
"MoviePy - Writing audio in lost102TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/lost/lost102.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/lost/lost102.mp4\n",
"Task completed\n",
"103 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/forget/forget103.mp4.\n",
"MoviePy - Writing audio in forget103TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/forget/forget103.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/forget/forget103.mp4\n",
"Task completed\n",
"104 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/forget/forget104.mp4.\n",
"MoviePy - Writing audio in forget104TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/forget/forget104.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/forget/forget104.mp4\n",
"Task completed\n",
"105 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/happy/happy105.mp4.\n",
"MoviePy - Writing audio in happy105TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/happy/happy105.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/happy/happy105.mp4\n",
"Task completed\n",
"106 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/happy/happy106.mp4.\n",
"MoviePy - Writing audio in happy106TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/happy/happy106.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/happy/happy106.mp4\n",
"Task completed\n",
"107 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sad/sad107.mp4.\n",
"MoviePy - Writing audio in sad107TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sad/sad107.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sad/sad107.mp4\n",
"Task completed\n",
"108 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sad/sad108.mp4.\n",
"MoviePy - Writing audio in sad108TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sad/sad108.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sad/sad108.mp4\n",
"Task completed\n",
"109 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/like/like109.mp4.\n",
"MoviePy - Writing audio in like109TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/like/like109.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/like/like109.mp4\n",
"Task completed\n",
"110 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/like/like110.mp4.\n",
"MoviePy - Writing audio in like110TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/like/like110.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/like/like110.mp4\n",
"Task completed\n",
"111 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/work/work111.mp4.\n",
"MoviePy - Writing audio in work111TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/work/work111.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/work/work111.mp4\n",
"Task completed\n",
"112 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/work/work112.mp4.\n",
"MoviePy - Writing audio in work112TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/work/work112.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/work/work112.mp4\n",
"Task completed\n",
"113 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/same/same113.mp4.\n",
"MoviePy - Writing audio in same113TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/same/same113.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/same/same113.mp4\n",
"Task completed\n",
"114 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/same/same114.mp4.\n",
"MoviePy - Writing audio in same114TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/same/same114.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/same/same114.mp4\n",
"Task completed\n",
"115 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/different/different115.mp4.\n",
"MoviePy - Writing audio in different115TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/different/different115.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/different/different115.mp4\n",
"Task completed\n",
"116 ur https://www.youtube.com/watch?v=N4n5CDpyX3w\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/different/different116.mp4.\n",
"MoviePy - Writing audio in different116TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/different/different116.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/different/different116.mp4\n",
"Task completed\n",
"117 ur https://www.youtube.com/watch?v=PHEFs5gHrl4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/white/white117.mp4.\n",
"MoviePy - Writing audio in white117TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/white/white117.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/white/white117.mp4\n",
"Task completed\n",
"118 ur https://www.youtube.com/watch?v=PBDUwwE9BFM&t=54s\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/tired/tired118.mp4.\n",
"MoviePy - Writing audio in tired118TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/tired/tired118.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/tired/tired118.mp4\n",
"Task completed\n",
"119 ur https://www.youtube.com/watch?v=PBDUwwE9BFM&t=54s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/forget/forget119.mp4.\n",
"MoviePy - Writing audio in forget119TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/forget/forget119.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/forget/forget119.mp4\n",
"Task completed\n",
"120 ur https://www.youtube.com/watch?v=PBDUwwE9BFM&t=54s\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nice/nice120.mp4.\n",
"MoviePy - Writing audio in nice120TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nice/nice120.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nice/nice120.mp4\n",
"Task completed\n",
"121 ur https://www.youtube.com/watch?v=bFm9sAXhmkQ\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"bFm9sAXhmkQ is age restricted, and can't be accessed without logging in.\n",
"122 ur https://www.youtube.com/watch?v=EFTKM2dMkBE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/student/student122.mp4.\n",
"MoviePy - Writing audio in student122TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/student/student122.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/student/student122.mp4\n",
"Task completed\n",
"123 ur https://www.youtube.com/watch?v=EFTKM2dMkBE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/work/work123.mp4.\n",
"MoviePy - Writing audio in work123TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/work/work123.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/work/work123.mp4\n",
"Task completed\n",
"124 ur https://www.youtube.com/watch?v=EFTKM2dMkBE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/school/school124.mp4.\n",
"MoviePy - Writing audio in school124TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/school/school124.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/school/school124.mp4\n",
"Task completed\n",
"125 ur https://www.youtube.com/watch?v=EFTKM2dMkBE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/doctor/doctor125.mp4.\n",
"MoviePy - Writing audio in doctor125TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/doctor/doctor125.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/doctor/doctor125.mp4\n",
"Task completed\n",
"126 ur https://www.youtube.com/watch?v=EFTKM2dMkBE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nurse/nurse126.mp4.\n",
"MoviePy - Writing audio in nurse126TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nurse/nurse126.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nurse/nurse126.mp4\n",
"Task completed\n",
"127 ur www.youtube.com/watch?v=Nu7LASnlkig\n",
"folder created\n",
"Nu7LASnlkig is unavailable\n",
"128 ur https://www.youtube.com/watch?v=CGJx9YAJpuo\n",
"folder created\n",
"CGJx9YAJpuo is unavailable\n",
"129 ur https://www.youtube.com/watch?v=6x454ncqWFg\n",
"folder created\n",
"6x454ncqWFg is a private video\n",
"130 ur https://www.youtube.com/watch?v=6x454ncqWFg\n",
"folder created\n",
"6x454ncqWFg is a private video\n",
"131 ur https://www.youtube.com/watch?v=6x454ncqWFg\n",
"folder created\n",
"6x454ncqWFg is a private video\n",
"132 ur https://www.youtube.com/watch?v=6x454ncqWFg\n",
"folder created\n",
"6x454ncqWFg is a private video\n",
"133 ur https://www.youtube.com/watch?v=6x454ncqWFg\n",
"folder created\n",
"6x454ncqWFg is a private video\n",
"134 ur https://www.youtube.com/watch?v=6x454ncqWFg\n",
"folder created\n",
"6x454ncqWFg is a private video\n",
"135 ur https://www.youtube.com/watch?v=qysriDtUS5o\n",
"folder created\n",
"qysriDtUS5o is age restricted, and can't be accessed without logging in.\n",
"136 ur https://www.youtube.com/watch?v=qysriDtUS5o\n",
"folder created\n",
"qysriDtUS5o is age restricted, and can't be accessed without logging in.\n",
"137 ur https://www.youtube.com/watch?v=qysriDtUS5o\n",
"folder created\n",
"qysriDtUS5o is age restricted, and can't be accessed without logging in.\n",
"138 ur https://www.youtube.com/watch?v=qysriDtUS5o\n",
"folder created\n",
"qysriDtUS5o is age restricted, and can't be accessed without logging in.\n",
"139 ur https://www.youtube.com/watch?v=YiEv1JgTALU\n",
"folder created\n",
"YiEv1JgTALU is unavailable\n",
"140 ur https://www.youtube.com/watch?v=WmTNL-wFK14\n",
"folder created\n",
"WmTNL-wFK14 is unavailable\n",
"141 ur www.youtube.com/watch?v=M2rKwo4Uhrc\n",
"folder created\n",
"M2rKwo4Uhrc is a private video\n",
"142 ur https://www.youtube.com/watch?v=7sZLZpm4n2E\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/family/family142.mp4.\n",
"MoviePy - Writing audio in family142TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/family/family142.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/family/family142.mp4\n",
"Task completed\n",
"143 ur https://www.youtube.com/watch?v=7sZLZpm4n2E\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/grandmother/grandmother143.mp4.\n",
"MoviePy - Writing audio in grandmother143TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/grandmother/grandmother143.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/grandmother/grandmother143.mp4\n",
"Task completed\n",
"144 ur https://www.youtube.com/watch?v=7sZLZpm4n2E\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/grandfather/grandfather144.mp4.\n",
"MoviePy - Writing audio in grandfather144TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/grandfather/grandfather144.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/grandfather/grandfather144.mp4\n",
"Task completed\n",
"145 ur https://www.youtube.com/watch?v=7sZLZpm4n2E\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/cousin/cousin145.mp4.\n",
"MoviePy - Writing audio in cousin145TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/cousin/cousin145.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/cousin/cousin145.mp4\n",
"Task completed\n",
"146 ur https://www.youtube.com/watch?v=7sZLZpm4n2E\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/cousin/cousin146.mp4.\n",
"MoviePy - Writing audio in cousin146TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/cousin/cousin146.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/cousin/cousin146.mp4\n",
"Task completed\n",
"147 ur https://www.youtube.com/watch?v=7sZLZpm4n2E\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/cousin/cousin147.mp4.\n",
"MoviePy - Writing audio in cousin147TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/cousin/cousin147.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/cousin/cousin147.mp4\n",
"Task completed\n",
"148 ur https://www.youtube.com/watch?v=wS0R-2JXkds\n",
"folder created\n",
"wS0R-2JXkds is unavailable\n",
"149 ur https://www.youtube.com/watch?v=wS0R-2JXkds\n",
"folder created\n",
"wS0R-2JXkds is unavailable\n",
"150 ur https://www.youtube.com/watch?v=wS0R-2JXkds\n",
"folder created\n",
"wS0R-2JXkds is unavailable\n",
"151 ur https://www.youtube.com/watch?v=wS0R-2JXkds\n",
"folder created\n",
"wS0R-2JXkds is unavailable\n",
"152 ur www.youtube.com/watch?v=WdFPBiAUm2k\n",
"folder created\n",
"WdFPBiAUm2k is unavailable\n",
"153 ur www.youtube.com/watch?v=-wmqgdmwySo\n",
"folder created\n",
"-wmqgdmwySo is unavailable\n",
"154 ur www.youtube.com/watch?v=Pj7ONpWo7sg\n",
"folder created\n",
"Pj7ONpWo7sg is a private video\n",
"155 ur https://www.youtube.com/watch?v=HHX-yrm-DMk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/water/water155.mp4.\n",
"MoviePy - Writing audio in water155TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/water/water155.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/water/water155.mp4\n",
"Task completed\n",
"156 ur https://www.youtube.com/watch?v=abThwavniFg\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/different/different156.mp4.\n",
"MoviePy - Writing audio in different156TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/different/different156.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/different/different156.mp4\n",
"Task completed\n",
"157 ur https://www.youtube.com/watch?v=XEdsQNNyp-E\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"XEdsQNNyp-E is unavailable\n",
"158 ur https://www.youtube.com/watch?v=XEdsQNNyp-E\n",
"folder created\n",
"XEdsQNNyp-E is unavailable\n",
"159 ur www.youtube.com/watch?v=_s2Usv6Tx_I\n",
"folder created\n",
"_s2Usv6Tx_I is unavailable\n",
"160 ur https://www.youtube.com/watch?v=7m6N78E-5uE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/boy/boy160.mp4.\n",
"MoviePy - Writing audio in boy160TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/boy/boy160.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/boy/boy160.mp4\n",
"Task completed\n",
"161 ur https://www.youtube.com/watch?v=7m6N78E-5uE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/boy/boy161.mp4.\n",
"MoviePy - Writing audio in boy161TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/boy/boy161.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/boy/boy161.mp4\n",
"Task completed\n",
"162 ur https://www.youtube.com/watch?v=7m6N78E-5uE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/girl/girl162.mp4.\n",
"MoviePy - Writing audio in girl162TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/girl/girl162.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/girl/girl162.mp4\n",
"Task completed\n",
"163 ur https://www.youtube.com/watch?v=7m6N78E-5uE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/girl/girl163.mp4.\n",
"MoviePy - Writing audio in girl163TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/girl/girl163.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/girl/girl163.mp4\n",
"Task completed\n",
"164 ur https://www.youtube.com/watch?v=7m6N78E-5uE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sister/sister164.mp4.\n",
"MoviePy - Writing audio in sister164TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sister/sister164.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sister/sister164.mp4\n",
"Task completed\n",
"165 ur https://www.youtube.com/watch?v=7m6N78E-5uE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sister/sister165.mp4.\n",
"MoviePy - Writing audio in sister165TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sister/sister165.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sister/sister165.mp4\n",
"Task completed\n",
"166 ur https://www.youtube.com/watch?v=7m6N78E-5uE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/brother/brother166.mp4.\n",
"MoviePy - Writing audio in brother166TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/brother/brother166.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/brother/brother166.mp4\n",
"Task completed\n",
"167 ur https://www.youtube.com/watch?v=7m6N78E-5uE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/brother/brother167.mp4.\n",
"MoviePy - Writing audio in brother167TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/brother/brother167.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/brother/brother167.mp4\n",
"Task completed\n",
"168 ur https://www.youtube.com/watch?v=7m6N78E-5uE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/cousin/cousin168.mp4.\n",
"MoviePy - Writing audio in cousin168TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/cousin/cousin168.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/cousin/cousin168.mp4\n",
"Task completed\n",
"169 ur https://www.youtube.com/watch?v=7m6N78E-5uE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/mother/mother169.mp4.\n",
"MoviePy - Writing audio in mother169TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/mother/mother169.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/mother/mother169.mp4\n",
"Task completed\n",
"170 ur https://www.youtube.com/watch?v=7m6N78E-5uE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/mother/mother170.mp4.\n",
"MoviePy - Writing audio in mother170TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/mother/mother170.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/mother/mother170.mp4\n",
"Task completed\n",
"171 ur https://www.youtube.com/watch?v=7m6N78E-5uE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/father/father171.mp4.\n",
"MoviePy - Writing audio in father171TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/father/father171.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/father/father171.mp4\n",
"Task completed\n",
"172 ur https://www.youtube.com/watch?v=7m6N78E-5uE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/father/father172.mp4.\n",
"MoviePy - Writing audio in father172TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/father/father172.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/father/father172.mp4\n",
"Task completed\n",
"173 ur https://www.youtube.com/watch?v=7m6N78E-5uE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/family/family173.mp4.\n",
"MoviePy - Writing audio in family173TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/family/family173.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/family/family173.mp4\n",
"Task completed\n",
"174 ur https://www.youtube.com/watch?v=7m6N78E-5uE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/family/family174.mp4.\n",
"MoviePy - Writing audio in family174TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/family/family174.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/family/family174.mp4\n",
"Task completed\n",
"175 ur https://www.youtube.com/watch?v=G3GT15_dPyU\n",
"folder created\n",
"G3GT15_dPyU is age restricted, and can't be accessed without logging in.\n",
"176 ur https://www.youtube.com/watch?v=G3GT15_dPyU\n",
"folder created\n",
"G3GT15_dPyU is age restricted, and can't be accessed without logging in.\n",
"177 ur https://www.youtube.com/watch?v=RjKI2a_hZ18\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/what/what177.mp4.\n",
"MoviePy - Writing audio in what177TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/what/what177.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/what/what177.mp4\n",
"Task completed\n",
"178 ur www.youtube.com/watch?v=LOxTQ06JyCQ\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"LOxTQ06JyCQ is a private video\n",
"179 ur https://www.youtube.com/watch?v=ws12ZoG4qAU\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/fish/fish179.mp4.\n",
"MoviePy - Writing audio in fish179TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/fish/fish179.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/fish/fish179.mp4\n",
"Task completed\n",
"180 ur https://www.youtube.com/watch?v=ws12ZoG4qAU\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/play/play180.mp4.\n",
"MoviePy - Writing audio in play180TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/play/play180.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/play/play180.mp4\n",
"Task completed\n",
"181 ur https://www.youtube.com/watch?v=H-tAzh-nuV8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/computer/computer181.mp4.\n",
"MoviePy - Writing audio in computer181TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/computer/computer181.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/computer/computer181.mp4\n",
"Task completed\n",
"182 ur https://www.youtube.com/watch?v=lsjFBdE3X7M\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/eat/eat182.mp4.\n",
"MoviePy - Writing audio in eat182TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/eat/eat182.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/eat/eat182.mp4\n",
"Task completed\n",
"183 ur www.youtube.com/watch?v=gPlAfYvevxc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yes/yes183.mp4.\n",
"MoviePy - Writing audio in yes183TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yes/yes183.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/yes/yes183.mp4\n",
"Task completed\n",
"184 ur www.youtube.com/watch?v=86OOotf8Sxc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/school/school184.mp4.\n",
"MoviePy - Writing audio in school184TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/school/school184.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/school/school184.mp4\n",
"Task completed\n",
"185 ur www.youtube.com/watch?v=7OhTbCXAZQs\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/help/help185.mp4.\n",
"MoviePy - Writing audio in help185TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/help/help185.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/help/help185.mp4\n",
"Task completed\n",
"186 ur https://www.youtube.com/watch?v=kZuJalsv_z0\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/beautiful/beautiful186.mp4.\n",
"MoviePy - Writing audio in beautiful186TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/beautiful/beautiful186.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/beautiful/beautiful186.mp4\n",
"Task completed\n",
"187 ur https://www.youtube.com/watch?v=kZuJalsv_z0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/big/big187.mp4.\n",
"MoviePy - Writing audio in big187TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/big/big187.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/big/big187.mp4\n",
"Task completed\n",
"188 ur https://www.youtube.com/watch?v=kZuJalsv_z0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/deaf/deaf188.mp4.\n",
"MoviePy - Writing audio in deaf188TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/deaf/deaf188.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/deaf/deaf188.mp4\n",
"Task completed\n",
"189 ur https://www.youtube.com/watch?v=kZuJalsv_z0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/happy/happy189.mp4.\n",
"MoviePy - Writing audio in happy189TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/happy/happy189.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/happy/happy189.mp4\n",
"Task completed\n",
"190 ur https://www.youtube.com/watch?v=kZuJalsv_z0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hearing/hearing190.mp4.\n",
"MoviePy - Writing audio in hearing190TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hearing/hearing190.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hearing/hearing190.mp4\n",
"Task completed\n",
"191 ur https://www.youtube.com/watch?v=kZuJalsv_z0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hello/hello191.mp4.\n",
"MoviePy - Writing audio in hello191TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hello/hello191.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hello/hello191.mp4\n",
"Task completed\n",
"192 ur https://www.youtube.com/watch?v=kZuJalsv_z0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/beautiful/beautiful192.mp4.\n",
"MoviePy - Writing audio in beautiful192TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/beautiful/beautiful192.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/beautiful/beautiful192.mp4\n",
"Task completed\n",
"193 ur https://www.youtube.com/watch?v=kZuJalsv_z0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/tired/tired193.mp4.\n",
"MoviePy - Writing audio in tired193TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/tired/tired193.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/tired/tired193.mp4\n",
"Task completed\n",
"194 ur https://www.youtube.com/watch?v=kZuJalsv_z0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/you/you194.mp4.\n",
"MoviePy - Writing audio in you194TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/you/you194.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/you/you194.mp4\n",
"Task completed\n",
"195 ur https://www.youtube.com/watch?v=pD4QabDQr6M\n",
"folder created\n",
"pD4QabDQr6M is unavailable\n",
"196 ur https://www.youtube.com/watch?v=pD4QabDQr6M\n",
"folder created\n",
"pD4QabDQr6M is unavailable\n",
"197 ur https://www.youtube.com/watch?v=pD4QabDQr6M\n",
"folder created\n",
"pD4QabDQr6M is unavailable\n",
"198 ur https://www.youtube.com/watch?v=pD4QabDQr6M\n",
"folder created\n",
"pD4QabDQr6M is unavailable\n",
"199 ur https://www.youtube.com/watch?v=Pt_L8OV40Bc\n",
"folder created\n",
"Pt_L8OV40Bc is a private video\n",
"200 ur www.youtube.com/watch?v=xq5Enus558k\n",
"folder created\n",
"xq5Enus558k is a private video\n",
"201 ur https://www.youtube.com/watch?v=bSQ9f3epmxQ\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/pencil/pencil201.mp4.\n",
"MoviePy - Writing audio in pencil201TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/pencil/pencil201.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/pencil/pencil201.mp4\n",
"Task completed\n",
"202 ur www.youtube.com/watch?v=RStYX5OXPjE\n",
"folder created\n",
"RStYX5OXPjE is unavailable\n",
"203 ur https://www.youtube.com/watch?v=mz32w4pNLLI\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bad/bad203.mp4.\n",
"MoviePy - Writing audio in bad203TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bad/bad203.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bad/bad203.mp4\n",
"Task completed\n",
"204 ur https://www.youtube.com/watch?v=wLfH8VE_Vyo\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sad/sad204.mp4.\n",
"MoviePy - Writing audio in sad204TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sad/sad204.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sad/sad204.mp4\n",
"Task completed\n",
"205 ur https://www.youtube.com/watch?v=si01coqVYiA\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"si01coqVYiA is unavailable\n",
"206 ur https://www.youtube.com/watch?v=si01coqVYiA\n",
"folder created\n",
"si01coqVYiA is unavailable\n",
"207 ur https://www.youtube.com/watch?v=si01coqVYiA\n",
"folder created\n",
"si01coqVYiA is unavailable\n",
"208 ur https://www.youtube.com/watch?v=si01coqVYiA\n",
"folder created\n",
"si01coqVYiA is unavailable\n",
"209 ur https://www.youtube.com/watch?v=l_aBsu7kVqI\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/forget/forget209.mp4.\n",
"MoviePy - Writing audio in forget209TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/forget/forget209.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/forget/forget209.mp4\n",
"Task completed\n",
"210 ur www.youtube.com/watch?v=-OCW9K2ZzVY\n",
"folder created\n",
"-OCW9K2ZzVY is a private video\n",
"211 ur www.youtube.com/watch?v=mylSeGckZJs\n",
"folder created\n",
"mylSeGckZJs is a private video\n",
"212 ur https://www.youtube.com/watch?v=f7tZegTJCWo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/finish/finish212.mp4.\n",
"MoviePy - Writing audio in finish212TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/finish/finish212.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/finish/finish212.mp4\n",
"Task completed\n",
"213 ur https://www.youtube.com/watch?v=f7tZegTJCWo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/fine/fine213.mp4.\n",
"MoviePy - Writing audio in fine213TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/fine/fine213.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/fine/fine213.mp4\n",
"Task completed\n",
"214 ur https://www.youtube.com/watch?v=f7tZegTJCWo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sit/sit214.mp4.\n",
"MoviePy - Writing audio in sit214TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sit/sit214.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sit/sit214.mp4\n",
"Task completed\n",
"215 ur https://www.youtube.com/watch?v=f7tZegTJCWo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/table/table215.mp4.\n",
"MoviePy - Writing audio in table215TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/table/table215.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/table/table215.mp4\n",
"Task completed\n",
"216 ur https://www.youtube.com/watch?v=wHqpX1hAeZc\n",
"folder created\n",
"wHqpX1hAeZc is a private video\n",
"217 ur https://www.youtube.com/watch?v=UMPO2ajluuQ\n",
"folder created\n",
"UMPO2ajluuQ is unavailable\n",
"218 ur https://www.youtube.com/watch?v=Zzf1EhDiGs0\n",
"folder created\n",
"Zzf1EhDiGs0 is a private video\n",
"219 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/deaf/deaf219.mp4.\n",
"MoviePy - Writing audio in deaf219TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/deaf/deaf219.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/deaf/deaf219.mp4\n",
"Task completed\n",
"220 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/deaf/deaf220.mp4.\n",
"MoviePy - Writing audio in deaf220TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/deaf/deaf220.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/deaf/deaf220.mp4\n",
"Task completed\n",
"221 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hearing/hearing221.mp4.\n",
"MoviePy - Writing audio in hearing221TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hearing/hearing221.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hearing/hearing221.mp4\n",
"Task completed\n",
"222 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/woman/woman222.mp4.\n",
"MoviePy - Writing audio in woman222TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/woman/woman222.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/woman/woman222.mp4\n",
"Task completed\n",
"223 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/woman/woman223.mp4.\n",
"MoviePy - Writing audio in woman223TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/woman/woman223.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/woman/woman223.mp4\n",
"Task completed\n",
"224 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/girl/girl224.mp4.\n",
"MoviePy - Writing audio in girl224TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/girl/girl224.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/girl/girl224.mp4\n",
"Task completed\n",
"225 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/man/man225.mp4.\n",
"MoviePy - Writing audio in man225TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/man/man225.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/man/man225.mp4\n",
"Task completed\n",
"226 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/man/man226.mp4.\n",
"MoviePy - Writing audio in man226TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/man/man226.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/man/man226.mp4\n",
"Task completed\n",
"227 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/man/man227.mp4.\n",
"MoviePy - Writing audio in man227TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/man/man227.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/man/man227.mp4\n",
"Task completed\n",
"228 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/boy/boy228.mp4.\n",
"MoviePy - Writing audio in boy228TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/boy/boy228.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/boy/boy228.mp4\n",
"Task completed\n",
"229 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/teacher/teacher229.mp4.\n",
"MoviePy - Writing audio in teacher229TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/teacher/teacher229.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/teacher/teacher229.mp4\n",
"Task completed\n",
"230 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/teacher/teacher230.mp4.\n",
"MoviePy - Writing audio in teacher230TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/teacher/teacher230.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/teacher/teacher230.mp4\n",
"Task completed\n",
"231 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/teacher/teacher231.mp4.\n",
"MoviePy - Writing audio in teacher231TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/teacher/teacher231.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/teacher/teacher231.mp4\n",
"Task completed\n",
"232 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/learn/learn232.mp4.\n",
"MoviePy - Writing audio in learn232TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/learn/learn232.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/learn/learn232.mp4\n",
"Task completed\n",
"233 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/student/student233.mp4.\n",
"MoviePy - Writing audio in student233TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/student/student233.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/student/student233.mp4\n",
"Task completed\n",
"234 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/student/student234.mp4.\n",
"MoviePy - Writing audio in student234TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/student/student234.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/student/student234.mp4\n",
"Task completed\n",
"235 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/school/school235.mp4.\n",
"MoviePy - Writing audio in school235TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/school/school235.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/school/school235.mp4\n",
"Task completed\n",
"236 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/school/school236.mp4.\n",
"MoviePy - Writing audio in school236TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/school/school236.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/school/school236.mp4\n",
"Task completed\n",
"237 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/france/france237.mp4.\n",
"MoviePy - Writing audio in france237TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/france/france237.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/france/france237.mp4\n",
"Task completed\n",
"238 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sign/sign238.mp4.\n",
"MoviePy - Writing audio in sign238TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sign/sign238.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sign/sign238.mp4\n",
"Task completed\n",
"239 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sign/sign239.mp4.\n",
"MoviePy - Writing audio in sign239TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sign/sign239.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sign/sign239.mp4\n",
"Task completed\n",
"240 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yes/yes240.mp4.\n",
"MoviePy - Writing audio in yes240TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yes/yes240.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/yes/yes240.mp4\n",
"Task completed\n",
"241 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yes/yes241.mp4.\n",
"MoviePy - Writing audio in yes241TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yes/yes241.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/yes/yes241.mp4\n",
"Task completed\n",
"242 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yes/yes242.mp4.\n",
"MoviePy - Writing audio in yes242TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yes/yes242.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/yes/yes242.mp4\n",
"Task completed\n",
"243 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/no/no243.mp4.\n",
"MoviePy - Writing audio in no243TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/no/no243.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/no/no243.mp4\n",
"Task completed\n",
"244 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/no/no244.mp4.\n",
"MoviePy - Writing audio in no244TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/no/no244.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/no/no244.mp4\n",
"Task completed\n",
"245 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/no/no245.mp4.\n",
"MoviePy - Writing audio in no245TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/no/no245.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/no/no245.mp4\n",
"Task completed\n",
"246 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/right/right246.mp4.\n",
"MoviePy - Writing audio in right246TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/right/right246.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/right/right246.mp4\n",
"Task completed\n",
"247 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/forget/forget247.mp4.\n",
"MoviePy - Writing audio in forget247TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/forget/forget247.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/forget/forget247.mp4\n",
"Task completed\n",
"248 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/forget/forget248.mp4.\n",
"MoviePy - Writing audio in forget248TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/forget/forget248.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/forget/forget248.mp4\n",
"Task completed\n",
"249 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/forget/forget249.mp4.\n",
"MoviePy - Writing audio in forget249TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/forget/forget249.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/forget/forget249.mp4\n",
"Task completed\n",
"250 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/know/know250.mp4.\n",
"MoviePy - Writing audio in know250TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/know/know250.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/know/know250.mp4\n",
"Task completed\n",
"251 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sit/sit251.mp4.\n",
"MoviePy - Writing audio in sit251TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sit/sit251.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/sit/sit251.mp4\n",
"Task completed\n",
"252 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sit/sit252.mp4.\n",
"MoviePy - Writing audio in sit252TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sit/sit252.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sit/sit252.mp4\n",
"Task completed\n",
"253 ur https://www.youtube.com/watch?v=0bIF7jh6lnE\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sit/sit253.mp4.\n",
"MoviePy - Writing audio in sit253TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sit/sit253.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sit/sit253.mp4\n",
"Task completed\n",
"254 ur https://www.youtube.com/watch?v=xmM5-XsE8Ac\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hello/hello254.mp4.\n",
"MoviePy - Writing audio in hello254TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hello/hello254.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/hello/hello254.mp4\n",
"Task completed\n",
"255 ur www.youtube.com/watch?v=xZmB1RKFk78\n",
"folder created\n",
"xZmB1RKFk78 is unavailable\n",
"256 ur www.youtube.com/watch?v=DB5oSxy6rrc\n",
"folder created\n",
"DB5oSxy6rrc is unavailable\n",
"257 ur https://www.youtube.com/watch?v=co7zdtkJW1E\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/want/want257.mp4.\n",
"MoviePy - Writing audio in want257TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/want/want257.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/want/want257.mp4\n",
"Task completed\n",
"258 ur www.youtube.com/watch?v=v80n5JTnyTQ\n",
"folder created\n",
"v80n5JTnyTQ is a private video\n",
"259 ur https://www.youtube.com/watch?v=R_G5zGVHxkU\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/happy/happy259.mp4.\n",
"MoviePy - Writing audio in happy259TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/happy/happy259.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/happy/happy259.mp4\n",
"Task completed\n",
"260 ur https://www.youtube.com/watch?v=R_G5zGVHxkU\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/happy/happy260.mp4.\n",
"MoviePy - Writing audio in happy260TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/happy/happy260.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/happy/happy260.mp4\n",
"Task completed\n",
"261 ur https://www.youtube.com/watch?v=R_G5zGVHxkU\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sad/sad261.mp4.\n",
"MoviePy - Writing audio in sad261TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sad/sad261.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sad/sad261.mp4\n",
"Task completed\n",
"262 ur https://www.youtube.com/watch?v=R_G5zGVHxkU\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sad/sad262.mp4.\n",
"MoviePy - Writing audio in sad262TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sad/sad262.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sad/sad262.mp4\n",
"Task completed\n",
"263 ur https://www.youtube.com/watch?v=R_G5zGVHxkU\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/tired/tired263.mp4.\n",
"MoviePy - Writing audio in tired263TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/tired/tired263.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/tired/tired263.mp4\n",
"Task completed\n",
"264 ur https://www.youtube.com/watch?v=R_G5zGVHxkU\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/tired/tired264.mp4.\n",
"MoviePy - Writing audio in tired264TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/tired/tired264.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/tired/tired264.mp4\n",
"Task completed\n",
"265 ur https://www.youtube.com/watch?v=R_G5zGVHxkU\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hurt/hurt265.mp4.\n",
"MoviePy - Writing audio in hurt265TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hurt/hurt265.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hurt/hurt265.mp4\n",
"Task completed\n",
"266 ur https://www.youtube.com/watch?v=R_G5zGVHxkU\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hurt/hurt266.mp4.\n",
"MoviePy - Writing audio in hurt266TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hurt/hurt266.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hurt/hurt266.mp4\n",
"Task completed\n",
"267 ur https://www.youtube.com/watch?v=R_G5zGVHxkU\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nice/nice267.mp4.\n",
"MoviePy - Writing audio in nice267TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nice/nice267.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nice/nice267.mp4\n",
"Task completed\n",
"268 ur https://www.youtube.com/watch?v=R_G5zGVHxkU\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nice/nice268.mp4.\n",
"MoviePy - Writing audio in nice268TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nice/nice268.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nice/nice268.mp4\n",
"Task completed\n",
"269 ur https://www.youtube.com/watch?v=fNBK5IuEIkk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/family/family269.mp4.\n",
"MoviePy - Writing audio in family269TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/family/family269.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/family/family269.mp4\n",
"Task completed\n",
"270 ur https://www.youtube.com/watch?v=fNBK5IuEIkk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/thanks/thanks270.mp4.\n",
"MoviePy - Writing audio in thanks270TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/thanks/thanks270.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/thanks/thanks270.mp4\n",
"Task completed\n",
"271 ur https://www.youtube.com/watch?v=9mxvzW7doks\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/good/good271.mp4.\n",
"MoviePy - Writing audio in good271TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/good/good271.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/good/good271.mp4\n",
"Task completed\n",
"272 ur https://www.youtube.com/watch?v=IeH7XYbo0yg\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/teacher/teacher272.mp4.\n",
"MoviePy - Writing audio in teacher272TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/teacher/teacher272.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/teacher/teacher272.mp4\n",
"Task completed\n",
"273 ur https://www.youtube.com/watch?v=IeH7XYbo0yg\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/student/student273.mp4.\n",
"MoviePy - Writing audio in student273TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/student/student273.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/student/student273.mp4\n",
"Task completed\n",
"274 ur https://www.youtube.com/watch?v=IeH7XYbo0yg\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nurse/nurse274.mp4.\n",
"MoviePy - Writing audio in nurse274TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nurse/nurse274.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nurse/nurse274.mp4\n",
"Task completed\n",
"275 ur https://www.youtube.com/watch?v=CzWUUhk6mMI\n",
"folder created\n",
"CzWUUhk6mMI is a private video\n",
"276 ur https://www.youtube.com/watch?v=CzWUUhk6mMI\n",
"folder created\n",
"CzWUUhk6mMI is a private video\n",
"277 ur https://www.youtube.com/watch?v=CzWUUhk6mMI\n",
"folder created\n",
"CzWUUhk6mMI is a private video\n",
"278 ur https://www.youtube.com/watch?v=CzWUUhk6mMI\n",
"folder created\n",
"CzWUUhk6mMI is a private video\n",
"279 ur https://www.youtube.com/watch?v=CzWUUhk6mMI\n",
"folder created\n",
"CzWUUhk6mMI is a private video\n",
"280 ur https://www.youtube.com/watch?v=CzWUUhk6mMI\n",
"folder created\n",
"CzWUUhk6mMI is a private video\n",
"281 ur https://www.youtube.com/watch?v=CzWUUhk6mMI\n",
"folder created\n",
"CzWUUhk6mMI is a private video\n",
"282 ur https://www.youtube.com/watch?v=CzWUUhk6mMI\n",
"folder created\n",
"CzWUUhk6mMI is a private video\n",
"283 ur https://www.youtube.com/watch?v=CzWUUhk6mMI\n",
"folder created\n",
"CzWUUhk6mMI is a private video\n",
"284 ur https://www.youtube.com/watch?v=CzWUUhk6mMI\n",
"folder created\n",
"CzWUUhk6mMI is a private video\n",
"285 ur https://www.youtube.com/watch?v=CzWUUhk6mMI\n",
"folder created\n",
"CzWUUhk6mMI is a private video\n",
"286 ur https://www.youtube.com/watch?v=tl_1gdc166A\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sign/sign286.mp4.\n",
"MoviePy - Writing audio in sign286TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sign/sign286.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sign/sign286.mp4\n",
"Task completed\n",
"287 ur https://www.youtube.com/watch?v=pl2FLu62aSA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bird/bird287.mp4.\n",
"MoviePy - Writing audio in bird287TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bird/bird287.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bird/bird287.mp4\n",
"Task completed\n",
"288 ur www.youtube.com/watch?v=Z0oNgus1lzA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/grandfather/grandfather288.mp4.\n",
"MoviePy - Writing audio in grandfather288TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/grandfather/grandfather288.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/grandfather/grandfather288.mp4\n",
"Task completed\n",
"289 ur https://www.youtube.com/watch?v=k8hg4-mwRqU\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"k8hg4-mwRqU is age restricted, and can't be accessed without logging in.\n",
"290 ur https://www.youtube.com/watch?v=k8hg4-mwRqU\n",
"folder created\n",
"k8hg4-mwRqU is age restricted, and can't be accessed without logging in.\n",
"291 ur https://www.youtube.com/watch?v=o8vR5ZtYFFs\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/school/school291.mp4.\n",
"MoviePy - Writing audio in school291TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/school/school291.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/school/school291.mp4\n",
"Task completed\n",
"292 ur https://www.youtube.com/watch?v=P2ifb9bxSNE\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"P2ifb9bxSNE is unavailable\n",
"293 ur https://www.youtube.com/watch?v=sG5ozQqQ7ug\n",
"folder created\n",
"sG5ozQqQ7ug is unavailable\n",
"294 ur https://www.youtube.com/watch?v=qQNwvAhwCuc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/when/when294.mp4.\n",
"MoviePy - Writing audio in when294TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/when/when294.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/when/when294.mp4\n",
"Task completed\n",
"295 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"S_LEeTt2McM is unavailable\n",
"296 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"297 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"298 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"299 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"300 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"301 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"302 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"303 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"304 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"305 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"306 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"307 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"308 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"309 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"310 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"311 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"312 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"313 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"314 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"315 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"316 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"317 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"318 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"319 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"320 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"321 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"322 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"323 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"324 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"325 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"326 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"327 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"328 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"329 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"330 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"331 ur https://www.youtube.com/watch?v=S_LEeTt2McM\n",
"folder created\n",
"S_LEeTt2McM is unavailable\n",
"332 ur https://www.youtube.com/watch?v=fhF3y2UcnU0\n",
"folder created\n",
"fhF3y2UcnU0 is unavailable\n",
"333 ur https://www.youtube.com/watch?v=V8DTIPK4QlU\n",
"folder created\n",
"V8DTIPK4QlU is age restricted, and can't be accessed without logging in.\n",
"334 ur https://www.youtube.com/watch?v=lT43fCILJdg\n",
"folder created\n",
"lT43fCILJdg is unavailable\n",
"335 ur www.youtube.com/watch?v=Fc0mGYlkQHg\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/boy/boy335.mp4.\n",
"MoviePy - Writing audio in boy335TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/boy/boy335.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/boy/boy335.mp4\n",
"Task completed\n",
"336 ur https://www.youtube.com/watch?v=NbbNwVwdfGg\n",
"folder created\n",
"NbbNwVwdfGg is age restricted, and can't be accessed without logging in.\n",
"337 ur https://www.youtube.com/watch?v=_LGqHR3FhL8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sorry/sorry337.mp4.\n",
"MoviePy - Writing audio in sorry337TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sorry/sorry337.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sorry/sorry337.mp4\n",
"Task completed\n",
"338 ur https://www.youtube.com/watch?v=_LGqHR3FhL8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sorry/sorry338.mp4.\n",
"MoviePy - Writing audio in sorry338TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sorry/sorry338.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sorry/sorry338.mp4\n",
"Task completed\n",
"339 ur https://www.youtube.com/watch?v=_LGqHR3FhL8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/table/table339.mp4.\n",
"MoviePy - Writing audio in table339TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/table/table339.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/table/table339.mp4\n",
"Task completed\n",
"340 ur https://www.youtube.com/watch?v=_LGqHR3FhL8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/table/table340.mp4.\n",
"MoviePy - Writing audio in table340TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/table/table340.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/table/table340.mp4\n",
"Task completed\n",
"341 ur https://www.youtube.com/watch?v=_LGqHR3FhL8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sit/sit341.mp4.\n",
"MoviePy - Writing audio in sit341TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sit/sit341.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sit/sit341.mp4\n",
"Task completed\n",
"342 ur https://www.youtube.com/watch?v=_LGqHR3FhL8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/help/help342.mp4.\n",
"MoviePy - Writing audio in help342TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/help/help342.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/help/help342.mp4\n",
"Task completed\n",
"343 ur https://www.youtube.com/watch?v=_LGqHR3FhL8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/help/help343.mp4.\n",
"MoviePy - Writing audio in help343TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/help/help343.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/help/help343.mp4\n",
"Task completed\n",
"344 ur https://www.youtube.com/watch?v=_LGqHR3FhL8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/fine/fine344.mp4.\n",
"MoviePy - Writing audio in fine344TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/fine/fine344.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/fine/fine344.mp4\n",
"Task completed\n",
"345 ur https://www.youtube.com/watch?v=_LGqHR3FhL8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/fine/fine345.mp4.\n",
"MoviePy - Writing audio in fine345TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/fine/fine345.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/fine/fine345.mp4\n",
"Task completed\n",
"346 ur https://www.youtube.com/watch?v=_LGqHR3FhL8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/what/what346.mp4.\n",
"MoviePy - Writing audio in what346TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/what/what346.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/what/what346.mp4\n",
"Task completed\n",
"347 ur https://www.youtube.com/watch?v=_LGqHR3FhL8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/what/what347.mp4.\n",
"MoviePy - Writing audio in what347TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/what/what347.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/what/what347.mp4\n",
"Task completed\n",
"348 ur https://www.youtube.com/watch?v=_LGqHR3FhL8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/need/need348.mp4.\n",
"MoviePy - Writing audio in need348TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/need/need348.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/need/need348.mp4\n",
"Task completed\n",
"349 ur https://www.youtube.com/watch?v=_LGqHR3FhL8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/need/need349.mp4.\n",
"MoviePy - Writing audio in need349TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/need/need349.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/need/need349.mp4\n",
"Task completed\n",
"350 ur https://www.youtube.com/watch?v=_LGqHR3FhL8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/must/must350.mp4.\n",
"MoviePy - Writing audio in must350TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/must/must350.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/must/must350.mp4\n",
"Task completed\n",
"351 ur https://www.youtube.com/watch?v=_LGqHR3FhL8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/must/must351.mp4.\n",
"MoviePy - Writing audio in must351TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/must/must351.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/must/must351.mp4\n",
"Task completed\n",
"352 ur https://www.youtube.com/watch?v=_LGqHR3FhL8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/now/now352.mp4.\n",
"MoviePy - Writing audio in now352TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/now/now352.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/now/now352.mp4\n",
"Task completed\n",
"353 ur https://www.youtube.com/watch?v=_LGqHR3FhL8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/now/now353.mp4.\n",
"MoviePy - Writing audio in now353TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/now/now353.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/now/now353.mp4\n",
"Task completed\n",
"354 ur www.youtube.com/watch?v=8ppn1CQpBKE\n",
"folder created\n",
"8ppn1CQpBKE is unavailable\n",
"355 ur https://www.youtube.com/watch?v=Ts1nVYDa_S8\n",
"folder created\n",
"Ts1nVYDa_S8 is unavailable\n",
"356 ur www.youtube.com/watch?v=2d0l-Je3QP4\n",
"folder created\n",
"2d0l-Je3QP4 is a private video\n",
"357 ur https://www.youtube.com/watch?v=UGs5YckrJKk\n",
"folder created\n",
"UGs5YckrJKk is age restricted, and can't be accessed without logging in.\n",
"358 ur www.youtube.com/watch?v=J_3nGXxrXpY\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/blue/blue358.mp4.\n",
"MoviePy - Writing audio in blue358TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/blue/blue358.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/blue/blue358.mp4\n",
"Task completed\n",
"359 ur www.youtube.com/watch?v=gNOyfBLhb-0\n",
"folder created\n",
"gNOyfBLhb-0 is a private video\n",
"360 ur www.youtube.com/watch?v=MyDb3_nPts4\n",
"folder created\n",
"MyDb3_nPts4 is a private video\n",
"361 ur https://www.youtube.com/watch?v=5sILDEiOcQ0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hungry/hungry361.mp4.\n",
"MoviePy - Writing audio in hungry361TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hungry/hungry361.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hungry/hungry361.mp4\n",
"Task completed\n",
"362 ur https://www.youtube.com/watch?v=5sILDEiOcQ0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/should/should362.mp4.\n",
"MoviePy - Writing audio in should362TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/should/should362.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/should/should362.mp4\n",
"Task completed\n",
"363 ur https://www.youtube.com/watch?v=5sILDEiOcQ0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/big/big363.mp4.\n",
"MoviePy - Writing audio in big363TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/big/big363.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/big/big363.mp4\n",
"Task completed\n",
"364 ur https://www.youtube.com/watch?v=5sILDEiOcQ0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/big/big364.mp4.\n",
"MoviePy - Writing audio in big364TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/big/big364.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/big/big364.mp4\n",
"Task completed\n",
"365 ur https://www.youtube.com/watch?v=5sILDEiOcQ0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yes/yes365.mp4.\n",
"MoviePy - Writing audio in yes365TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yes/yes365.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/yes/yes365.mp4\n",
"Task completed\n",
"366 ur https://www.youtube.com/watch?v=5sILDEiOcQ0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nothing/nothing366.mp4.\n",
"MoviePy - Writing audio in nothing366TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nothing/nothing366.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nothing/nothing366.mp4\n",
"Task completed\n",
"367 ur https://www.youtube.com/watch?v=4ldMv2xkdAg\n",
"folder created\n",
"4ldMv2xkdAg is a private video\n",
"368 ur www.youtube.com/watch?v=_GVODUZLS70\n",
"folder created\n",
"_GVODUZLS70 is a private video\n",
"369 ur https://www.youtube.com/watch?v=g59_3vr_NT0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/eat/eat369.mp4.\n",
"MoviePy - Writing audio in eat369TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/eat/eat369.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/eat/eat369.mp4\n",
"Task completed\n",
"370 ur https://www.youtube.com/watch?v=g59_3vr_NT0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/good/good370.mp4.\n",
"MoviePy - Writing audio in good370TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/good/good370.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/good/good370.mp4\n",
"Task completed\n",
"371 ur https://www.youtube.com/watch?v=g59_3vr_NT0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/no/no371.mp4.\n",
"MoviePy - Writing audio in no371TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/no/no371.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/no/no371.mp4\n",
"Task completed\n",
"372 ur https://www.youtube.com/watch?v=g59_3vr_NT0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/school/school372.mp4.\n",
"MoviePy - Writing audio in school372TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/school/school372.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/school/school372.mp4\n",
"Task completed\n",
"373 ur https://www.youtube.com/watch?v=g59_3vr_NT0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sick/sick373.mp4.\n",
"MoviePy - Writing audio in sick373TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sick/sick373.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sick/sick373.mp4\n",
"Task completed\n",
"374 ur https://www.youtube.com/watch?v=g59_3vr_NT0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sorry/sorry374.mp4.\n",
"MoviePy - Writing audio in sorry374TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sorry/sorry374.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sorry/sorry374.mp4\n",
"Task completed\n",
"375 ur https://www.youtube.com/watch?v=g59_3vr_NT0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/understand/understand375.mp4.\n",
"MoviePy - Writing audio in understand375TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/understand/understand375.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/understand/understand375.mp4\n",
"Task completed\n",
"376 ur https://www.youtube.com/watch?v=g59_3vr_NT0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/work/work376.mp4.\n",
"MoviePy - Writing audio in work376TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/work/work376.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/work/work376.mp4\n",
"Task completed\n",
"377 ur https://www.youtube.com/watch?v=g59_3vr_NT0\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yes/yes377.mp4.\n",
"MoviePy - Writing audio in yes377TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yes/yes377.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/yes/yes377.mp4\n",
"Task completed\n",
"378 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"379 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"380 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"381 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"382 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"383 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"384 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"385 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"386 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"387 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"388 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"389 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"390 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"391 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"392 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"393 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"394 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"395 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"396 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"397 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"398 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"399 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"400 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"401 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"402 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"403 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"404 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"405 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"406 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"407 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"408 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"409 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"410 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"411 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"412 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"413 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"414 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"415 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"416 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"417 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"418 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"419 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"420 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"421 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"422 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"423 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"424 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"425 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"426 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"427 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"428 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"429 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"430 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"431 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"432 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"433 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"434 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"435 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"436 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"437 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"438 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"439 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"440 ur https://www.youtube.com/watch?v=9g-hioQapYE\n",
"folder created\n",
"9g-hioQapYE is age restricted, and can't be accessed without logging in.\n",
"441 ur https://www.youtube.com/watch?v=jC6sHiZBEyI\n",
"folder created\n",
"jC6sHiZBEyI is unavailable\n",
"442 ur https://www.youtube.com/watch?v=eeHS78JyN70\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/eat/eat442.mp4.\n",
"MoviePy - Writing audio in eat442TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/eat/eat442.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/eat/eat442.mp4\n",
"Task completed\n",
"443 ur https://www.youtube.com/watch?v=eeHS78JyN70\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/eat/eat443.mp4.\n",
"MoviePy - Writing audio in eat443TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/eat/eat443.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/eat/eat443.mp4\n",
"Task completed\n",
"444 ur https://www.youtube.com/watch?v=eeHS78JyN70\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hungry/hungry444.mp4.\n",
"MoviePy - Writing audio in hungry444TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hungry/hungry444.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hungry/hungry444.mp4\n",
"Task completed\n",
"445 ur https://www.youtube.com/watch?v=eeHS78JyN70\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hungry/hungry445.mp4.\n",
"MoviePy - Writing audio in hungry445TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hungry/hungry445.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hungry/hungry445.mp4\n",
"Task completed\n",
"446 ur https://www.youtube.com/watch?v=eeHS78JyN70\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/drink/drink446.mp4.\n",
"MoviePy - Writing audio in drink446TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/drink/drink446.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/drink/drink446.mp4\n",
"Task completed\n",
"447 ur https://www.youtube.com/watch?v=eeHS78JyN70\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/drink/drink447.mp4.\n",
"MoviePy - Writing audio in drink447TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/drink/drink447.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/drink/drink447.mp4\n",
"Task completed\n",
"448 ur https://www.youtube.com/watch?v=eeHS78JyN70\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/doctor/doctor448.mp4.\n",
"MoviePy - Writing audio in doctor448TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/doctor/doctor448.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/doctor/doctor448.mp4\n",
"Task completed\n",
"449 ur https://www.youtube.com/watch?v=eeHS78JyN70\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/doctor/doctor449.mp4.\n",
"MoviePy - Writing audio in doctor449TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/doctor/doctor449.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/doctor/doctor449.mp4\n",
"Task completed\n",
"450 ur https://www.youtube.com/watch?v=eeHS78JyN70\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nurse/nurse450.mp4.\n",
"MoviePy - Writing audio in nurse450TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nurse/nurse450.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nurse/nurse450.mp4\n",
"Task completed\n",
"451 ur https://www.youtube.com/watch?v=eeHS78JyN70\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nurse/nurse451.mp4.\n",
"MoviePy - Writing audio in nurse451TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nurse/nurse451.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nurse/nurse451.mp4\n",
"Task completed\n",
"452 ur https://www.youtube.com/watch?v=eeHS78JyN70\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/tired/tired452.mp4.\n",
"MoviePy - Writing audio in tired452TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/tired/tired452.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/tired/tired452.mp4\n",
"Task completed\n",
"453 ur https://www.youtube.com/watch?v=eeHS78JyN70\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/tired/tired453.mp4.\n",
"MoviePy - Writing audio in tired453TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/tired/tired453.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/tired/tired453.mp4\n",
"Task completed\n",
"454 ur https://www.youtube.com/watch?v=Qwdfx2_vzwc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/eat/eat454.mp4.\n",
"MoviePy - Writing audio in eat454TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/eat/eat454.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/eat/eat454.mp4\n",
"Task completed\n",
"455 ur www.youtube.com/watch?v=aDl0aYDbAkw\n",
"folder created\n",
"aDl0aYDbAkw is a private video\n",
"456 ur https://www.youtube.com/watch?v=kvJR02Idm-U\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/fish/fish456.mp4.\n",
"MoviePy - Writing audio in fish456TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/fish/fish456.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/fish/fish456.mp4\n",
"Task completed\n",
"457 ur www.youtube.com/watch?v=DeqpnWES_bs\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"DeqpnWES_bs is a private video\n",
"458 ur www.youtube.com/watch?v=lSM2XoWrTUY\n",
"folder created\n",
"lSM2XoWrTUY is a private video\n",
"459 ur https://www.youtube.com/watch?v=psspxdbtM3k\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/family/family459.mp4.\n",
"MoviePy - Writing audio in family459TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/family/family459.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/family/family459.mp4\n",
"Task completed\n",
"460 ur https://www.youtube.com/watch?v=psspxdbtM3k\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/mother/mother460.mp4.\n",
"MoviePy - Writing audio in mother460TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/mother/mother460.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/mother/mother460.mp4\n",
"Task completed\n",
"461 ur https://www.youtube.com/watch?v=psspxdbtM3k\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/father/father461.mp4.\n",
"MoviePy - Writing audio in father461TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/father/father461.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/father/father461.mp4\n",
"Task completed\n",
"462 ur https://www.youtube.com/watch?v=psspxdbtM3k\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sister/sister462.mp4.\n",
"MoviePy - Writing audio in sister462TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sister/sister462.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sister/sister462.mp4\n",
"Task completed\n",
"463 ur https://www.youtube.com/watch?v=psspxdbtM3k\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/brother/brother463.mp4.\n",
"MoviePy - Writing audio in brother463TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/brother/brother463.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/brother/brother463.mp4\n",
"Task completed\n",
"464 ur https://www.youtube.com/watch?v=7bWO4SJ0sv4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/happy/happy464.mp4.\n",
"MoviePy - Writing audio in happy464TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/happy/happy464.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/happy/happy464.mp4\n",
"Task completed\n",
"465 ur https://www.youtube.com/watch?v=dtSmDTn3zkk\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/mother/mother465.mp4.\n",
"MoviePy - Writing audio in mother465TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/mother/mother465.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/mother/mother465.mp4\n",
"Task completed\n",
"466 ur https://www.youtube.com/watch?v=dtSmDTn3zkk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/grandmother/grandmother466.mp4.\n",
"MoviePy - Writing audio in grandmother466TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/grandmother/grandmother466.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/grandmother/grandmother466.mp4\n",
"Task completed\n",
"467 ur https://www.youtube.com/watch?v=dtSmDTn3zkk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/grandmother/grandmother467.mp4.\n",
"MoviePy - Writing audio in grandmother467TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/grandmother/grandmother467.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/grandmother/grandmother467.mp4\n",
"Task completed\n",
"468 ur https://www.youtube.com/watch?v=dtSmDTn3zkk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/father/father468.mp4.\n",
"MoviePy - Writing audio in father468TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/father/father468.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/father/father468.mp4\n",
"Task completed\n",
"469 ur https://www.youtube.com/watch?v=dtSmDTn3zkk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/father/father469.mp4.\n",
"MoviePy - Writing audio in father469TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/father/father469.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/father/father469.mp4\n",
"Task completed\n",
"470 ur https://www.youtube.com/watch?v=dtSmDTn3zkk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/grandfather/grandfather470.mp4.\n",
"MoviePy - Writing audio in grandfather470TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/grandfather/grandfather470.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/grandfather/grandfather470.mp4\n",
"Task completed\n",
"471 ur https://www.youtube.com/watch?v=dtSmDTn3zkk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/now/now471.mp4.\n",
"MoviePy - Writing audio in now471TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/now/now471.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/now/now471.mp4\n",
"Task completed\n",
"472 ur https://www.youtube.com/watch?v=dtSmDTn3zkk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/finish/finish472.mp4.\n",
"MoviePy - Writing audio in finish472TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/finish/finish472.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/finish/finish472.mp4\n",
"Task completed\n",
"473 ur https://www.youtube.com/watch?v=meBI_IVGKpE\n",
"folder created\n",
"meBI_IVGKpE is age restricted, and can't be accessed without logging in.\n",
"474 ur https://www.youtube.com/watch?v=meBI_IVGKpE\n",
"folder created\n",
"meBI_IVGKpE is age restricted, and can't be accessed without logging in.\n",
"475 ur https://www.youtube.com/watch?v=meBI_IVGKpE\n",
"folder created\n",
"meBI_IVGKpE is age restricted, and can't be accessed without logging in.\n",
"476 ur https://www.youtube.com/watch?v=meBI_IVGKpE\n",
"folder created\n",
"meBI_IVGKpE is age restricted, and can't be accessed without logging in.\n",
"477 ur www.youtube.com/watch?v=sxeWeiCoM7k\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/walk/walk477.mp4.\n",
"MoviePy - Writing audio in walk477TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/walk/walk477.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/walk/walk477.mp4\n",
"Task completed\n",
"478 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/you/you478.mp4.\n",
"MoviePy - Writing audio in you478TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/you/you478.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/you/you478.mp4\n",
"Task completed\n",
"479 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/you/you479.mp4.\n",
"MoviePy - Writing audio in you479TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/you/you479.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/you/you479.mp4\n",
"Task completed\n",
"480 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/who/who480.mp4.\n",
"MoviePy - Writing audio in who480TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/who/who480.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/who/who480.mp4\n",
"Task completed\n",
"481 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/who/who481.mp4.\n",
"MoviePy - Writing audio in who481TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/who/who481.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/who/who481.mp4\n",
"Task completed\n",
"482 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/who/who482.mp4.\n",
"MoviePy - Writing audio in who482TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/who/who482.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/who/who482.mp4\n",
"Task completed\n",
"483 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/where/where483.mp4.\n",
"MoviePy - Writing audio in where483TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/where/where483.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/where/where483.mp4\n",
"Task completed\n",
"484 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/learn/learn484.mp4.\n",
"MoviePy - Writing audio in learn484TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/learn/learn484.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/learn/learn484.mp4\n",
"Task completed\n",
"485 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/learn/learn485.mp4.\n",
"MoviePy - Writing audio in learn485TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/learn/learn485.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/learn/learn485.mp4\n",
"Task completed\n",
"486 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/student/student486.mp4.\n",
"MoviePy - Writing audio in student486TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/student/student486.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/student/student486.mp4\n",
"Task completed\n",
"487 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/student/student487.mp4.\n",
"MoviePy - Writing audio in student487TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/student/student487.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/student/student487.mp4\n",
"Task completed\n",
"488 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/teacher/teacher488.mp4.\n",
"MoviePy - Writing audio in teacher488TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/teacher/teacher488.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/teacher/teacher488.mp4\n",
"Task completed\n",
"489 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/teacher/teacher489.mp4.\n",
"MoviePy - Writing audio in teacher489TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/teacher/teacher489.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/teacher/teacher489.mp4\n",
"Task completed\n",
"490 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/man/man490.mp4.\n",
"MoviePy - Writing audio in man490TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/man/man490.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/man/man490.mp4\n",
"Task completed\n",
"491 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/man/man491.mp4.\n",
"MoviePy - Writing audio in man491TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/man/man491.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/man/man491.mp4\n",
"Task completed\n",
"492 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/woman/woman492.mp4.\n",
"MoviePy - Writing audio in woman492TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/woman/woman492.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/woman/woman492.mp4\n",
"Task completed\n",
"493 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/girl/girl493.mp4.\n",
"MoviePy - Writing audio in girl493TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/girl/girl493.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/girl/girl493.mp4\n",
"Task completed\n",
"494 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/boy/boy494.mp4.\n",
"MoviePy - Writing audio in boy494TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/boy/boy494.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/boy/boy494.mp4\n",
"Task completed\n",
"495 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/mother/mother495.mp4.\n",
"MoviePy - Writing audio in mother495TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/mother/mother495.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/mother/mother495.mp4\n",
"Task completed\n",
"496 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/father/father496.mp4.\n",
"MoviePy - Writing audio in father496TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/father/father496.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/father/father496.mp4\n",
"Task completed\n",
"497 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sister/sister497.mp4.\n",
"MoviePy - Writing audio in sister497TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sister/sister497.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sister/sister497.mp4\n",
"Task completed\n",
"498 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sister/sister498.mp4.\n",
"MoviePy - Writing audio in sister498TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sister/sister498.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sister/sister498.mp4\n",
"Task completed\n",
"499 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/no/no499.mp4.\n",
"MoviePy - Writing audio in no499TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/no/no499.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/no/no499.mp4\n",
"Task completed\n",
"500 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/know/know500.mp4.\n",
"MoviePy - Writing audio in know500TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/know/know500.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/know/know500.mp4\n",
"Task completed\n",
"501 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/deaf/deaf501.mp4.\n",
"MoviePy - Writing audio in deaf501TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/deaf/deaf501.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/deaf/deaf501.mp4\n",
"Task completed\n",
"502 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/deaf/deaf502.mp4.\n",
"MoviePy - Writing audio in deaf502TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/deaf/deaf502.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/deaf/deaf502.mp4\n",
"Task completed\n",
"503 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hello/hello503.mp4.\n",
"MoviePy - Writing audio in hello503TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hello/hello503.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hello/hello503.mp4\n",
"Task completed\n",
"504 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/name/name504.mp4.\n",
"MoviePy - Writing audio in name504TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/name/name504.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/name/name504.mp4\n",
"Task completed\n",
"505 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/name/name505.mp4.\n",
"MoviePy - Writing audio in name505TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/name/name505.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/name/name505.mp4\n",
"Task completed\n",
"506 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/live/live506.mp4.\n",
"MoviePy - Writing audio in live506TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/live/live506.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/live/live506.mp4\n",
"Task completed\n",
"507 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/live/live507.mp4.\n",
"MoviePy - Writing audio in live507TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/live/live507.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/live/live507.mp4\n",
"Task completed\n",
"508 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/live/live508.mp4.\n",
"MoviePy - Writing audio in live508TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/live/live508.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/live/live508.mp4\n",
"Task completed\n",
"509 ur https://www.youtube.com/watch?v=BEKUHzwnVO8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nice/nice509.mp4.\n",
"MoviePy - Writing audio in nice509TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nice/nice509.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nice/nice509.mp4\n",
"Task completed\n",
"510 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"511 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"512 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"513 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"514 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"515 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"516 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"517 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"518 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"519 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"520 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"521 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"522 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"523 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"524 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"525 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"526 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"527 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"528 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"529 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"530 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"531 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"532 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"533 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"534 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"535 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"536 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"537 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"538 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"539 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"540 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"541 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"542 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"543 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"544 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"545 ur https://www.youtube.com/watch?v=iDWntsY_rZM\n",
"folder created\n",
"iDWntsY_rZM is unavailable\n",
"546 ur https://www.youtube.com/watch?v=q5LD-GiipnQ\n",
"folder created\n",
"q5LD-GiipnQ is unavailable\n",
"547 ur https://www.youtube.com/watch?v=n0PdKty8WRA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/live/live547.mp4.\n",
"MoviePy - Writing audio in live547TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/live/live547.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/live/live547.mp4\n",
"Task completed\n",
"548 ur https://www.youtube.com/watch?v=n0PdKty8WRA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/again/again548.mp4.\n",
"MoviePy - Writing audio in again548TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/again/again548.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/again/again548.mp4\n",
"Task completed\n",
"549 ur https://www.youtube.com/watch?v=n0PdKty8WRA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/help/help549.mp4.\n",
"MoviePy - Writing audio in help549TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/help/help549.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/help/help549.mp4\n",
"Task completed\n",
"550 ur https://www.youtube.com/watch?v=n0PdKty8WRA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/milk/milk550.mp4.\n",
"MoviePy - Writing audio in milk550TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/milk/milk550.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/milk/milk550.mp4\n",
"Task completed\n",
"551 ur https://www.youtube.com/watch?v=n0PdKty8WRA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/spring/spring551.mp4.\n",
"MoviePy - Writing audio in spring551TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/spring/spring551.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/spring/spring551.mp4\n",
"Task completed\n",
"552 ur https://www.youtube.com/watch?v=aGtIHKEdCds\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/book/book552.mp4.\n",
"MoviePy - Writing audio in book552TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/book/book552.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/book/book552.mp4\n",
"Task completed\n",
"553 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/again/again553.mp4.\n",
"MoviePy - Writing audio in again553TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/again/again553.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/again/again553.mp4\n",
"Task completed\n",
"554 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/again/again554.mp4.\n",
"MoviePy - Writing audio in again554TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/again/again554.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/again/again554.mp4\n",
"Task completed\n",
"555 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/again/again555.mp4.\n",
"MoviePy - Writing audio in again555TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/again/again555.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/again/again555.mp4\n",
"Task completed\n",
"556 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bad/bad556.mp4.\n",
"MoviePy - Writing audio in bad556TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bad/bad556.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bad/bad556.mp4\n",
"Task completed\n",
"557 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bad/bad557.mp4.\n",
"MoviePy - Writing audio in bad557TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bad/bad557.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bad/bad557.mp4\n",
"Task completed\n",
"558 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bathroom/bathroom558.mp4.\n",
"MoviePy - Writing audio in bathroom558TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bathroom/bathroom558.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bathroom/bathroom558.mp4\n",
"Task completed\n",
"559 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bathroom/bathroom559.mp4.\n",
"MoviePy - Writing audio in bathroom559TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bathroom/bathroom559.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bathroom/bathroom559.mp4\n",
"Task completed\n",
"560 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/big/big560.mp4.\n",
"MoviePy - Writing audio in big560TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/big/big560.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/big/big560.mp4\n",
"Task completed\n",
"561 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/big/big561.mp4.\n",
"MoviePy - Writing audio in big561TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/big/big561.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/big/big561.mp4\n",
"Task completed\n",
"562 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/boy/boy562.mp4.\n",
"MoviePy - Writing audio in boy562TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/boy/boy562.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/boy/boy562.mp4\n",
"Task completed\n",
"563 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/boy/boy563.mp4.\n",
"MoviePy - Writing audio in boy563TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/boy/boy563.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/boy/boy563.mp4\n",
"Task completed\n",
"564 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/but/but564.mp4.\n",
"MoviePy - Writing audio in but564TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/but/but564.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/but/but564.mp4\n",
"Task completed\n",
"565 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/but/but565.mp4.\n",
"MoviePy - Writing audio in but565TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/but/but565.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/but/but565.mp4\n",
"Task completed\n",
"566 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/but/but566.mp4.\n",
"MoviePy - Writing audio in but566TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/but/but566.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/but/but566.mp4\n",
"Task completed\n",
"567 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/father/father567.mp4.\n",
"MoviePy - Writing audio in father567TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/father/father567.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/father/father567.mp4\n",
"Task completed\n",
"568 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/father/father568.mp4.\n",
"MoviePy - Writing audio in father568TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/father/father568.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/father/father568.mp4\n",
"Task completed\n",
"569 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/day/day569.mp4.\n",
"MoviePy - Writing audio in day569TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/day/day569.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/day/day569.mp4\n",
"Task completed\n",
"570 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/day/day570.mp4.\n",
"MoviePy - Writing audio in day570TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/day/day570.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/day/day570.mp4\n",
"Task completed\n",
"571 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/finish/finish571.mp4.\n",
"MoviePy - Writing audio in finish571TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/finish/finish571.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/finish/finish571.mp4\n",
"Task completed\n",
"572 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/finish/finish572.mp4.\n",
"MoviePy - Writing audio in finish572TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/finish/finish572.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/finish/finish572.mp4\n",
"Task completed\n",
"573 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/friend/friend573.mp4.\n",
"MoviePy - Writing audio in friend573TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/friend/friend573.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/friend/friend573.mp4\n",
"Task completed\n",
"574 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/friend/friend574.mp4.\n",
"MoviePy - Writing audio in friend574TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/friend/friend574.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/friend/friend574.mp4\n",
"Task completed\n",
"575 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/friend/friend575.mp4.\n",
"MoviePy - Writing audio in friend575TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/friend/friend575.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/friend/friend575.mp4\n",
"Task completed\n",
"576 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/girl/girl576.mp4.\n",
"MoviePy - Writing audio in girl576TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/girl/girl576.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/girl/girl576.mp4\n",
"Task completed\n",
"577 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/girl/girl577.mp4.\n",
"MoviePy - Writing audio in girl577TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/girl/girl577.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/girl/girl577.mp4\n",
"Task completed\n",
"578 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/go/go578.mp4.\n",
"MoviePy - Writing audio in go578TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/go/go578.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/go/go578.mp4\n",
"Task completed\n",
"579 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/go/go579.mp4.\n",
"MoviePy - Writing audio in go579TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/go/go579.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/go/go579.mp4\n",
"Task completed\n",
"580 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/good/good580.mp4.\n",
"MoviePy - Writing audio in good580TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/good/good580.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/good/good580.mp4\n",
"Task completed\n",
"581 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/good/good581.mp4.\n",
"MoviePy - Writing audio in good581TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/good/good581.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/good/good581.mp4\n",
"Task completed\n",
"582 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/happy/happy582.mp4.\n",
"MoviePy - Writing audio in happy582TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/happy/happy582.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/happy/happy582.mp4\n",
"Task completed\n",
"583 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/happy/happy583.mp4.\n",
"MoviePy - Writing audio in happy583TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/happy/happy583.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/happy/happy583.mp4\n",
"Task completed\n",
"584 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hello/hello584.mp4.\n",
"MoviePy - Writing audio in hello584TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hello/hello584.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hello/hello584.mp4\n",
"Task completed\n",
"585 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hello/hello585.mp4.\n",
"MoviePy - Writing audio in hello585TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hello/hello585.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hello/hello585.mp4\n",
"Task completed\n",
"586 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/here/here586.mp4.\n",
"MoviePy - Writing audio in here586TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/here/here586.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/here/here586.mp4\n",
"Task completed\n",
"587 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/here/here587.mp4.\n",
"MoviePy - Writing audio in here587TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/here/here587.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/here/here587.mp4\n",
"Task completed\n",
"588 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/how/how588.mp4.\n",
"MoviePy - Writing audio in how588TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/how/how588.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/how/how588.mp4\n",
"Task completed\n",
"589 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/how/how589.mp4.\n",
"MoviePy - Writing audio in how589TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/how/how589.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/how/how589.mp4\n",
"Task completed\n",
"590 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/how/how590.mp4.\n",
"MoviePy - Writing audio in how590TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/how/how590.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/how/how590.mp4\n",
"Task completed\n",
"591 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hurt/hurt591.mp4.\n",
"MoviePy - Writing audio in hurt591TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hurt/hurt591.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hurt/hurt591.mp4\n",
"Task completed\n",
"592 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hurt/hurt592.mp4.\n",
"MoviePy - Writing audio in hurt592TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hurt/hurt592.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hurt/hurt592.mp4\n",
"Task completed\n",
"593 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/know/know593.mp4.\n",
"MoviePy - Writing audio in know593TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/know/know593.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/know/know593.mp4\n",
"Task completed\n",
"594 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/know/know594.mp4.\n",
"MoviePy - Writing audio in know594TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/know/know594.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/know/know594.mp4\n",
"Task completed\n",
"595 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/like/like595.mp4.\n",
"MoviePy - Writing audio in like595TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/like/like595.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/like/like595.mp4\n",
"Task completed\n",
"596 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/like/like596.mp4.\n",
"MoviePy - Writing audio in like596TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/like/like596.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/like/like596.mp4\n",
"Task completed\n",
"597 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/mother/mother597.mp4.\n",
"MoviePy - Writing audio in mother597TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/mother/mother597.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/mother/mother597.mp4\n",
"Task completed\n",
"598 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nice/nice598.mp4.\n",
"MoviePy - Writing audio in nice598TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nice/nice598.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nice/nice598.mp4\n",
"Task completed\n",
"599 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nice/nice599.mp4.\n",
"MoviePy - Writing audio in nice599TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nice/nice599.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nice/nice599.mp4\n",
"Task completed\n",
"600 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/night/night600.mp4.\n",
"MoviePy - Writing audio in night600TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/night/night600.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/night/night600.mp4\n",
"Task completed\n",
"601 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/night/night601.mp4.\n",
"MoviePy - Writing audio in night601TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/night/night601.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/night/night601.mp4\n",
"Task completed\n",
"602 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/no/no602.mp4.\n",
"MoviePy - Writing audio in no602TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/no/no602.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/no/no602.mp4\n",
"Task completed\n",
"603 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/now/now603.mp4.\n",
"MoviePy - Writing audio in now603TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/now/now603.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/now/now603.mp4\n",
"Task completed\n",
"604 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/now/now604.mp4.\n",
"MoviePy - Writing audio in now604TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/now/now604.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/now/now604.mp4\n",
"Task completed\n",
"605 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/please/please605.mp4.\n",
"MoviePy - Writing audio in please605TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/please/please605.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/please/please605.mp4\n",
"Task completed\n",
"606 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/please/please606.mp4.\n",
"MoviePy - Writing audio in please606TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/please/please606.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/please/please606.mp4\n",
"Task completed\n",
"607 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sad/sad607.mp4.\n",
"MoviePy - Writing audio in sad607TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sad/sad607.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sad/sad607.mp4\n",
"Task completed\n",
"608 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/same/same608.mp4.\n",
"MoviePy - Writing audio in same608TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/same/same608.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/same/same608.mp4\n",
"Task completed\n",
"609 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/same/same609.mp4.\n",
"MoviePy - Writing audio in same609TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/same/same609.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/same/same609.mp4\n",
"Task completed\n",
"610 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/same/same610.mp4.\n",
"MoviePy - Writing audio in same610TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/same/same610.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/same/same610.mp4\n",
"Task completed\n",
"611 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/same/same611.mp4.\n",
"MoviePy - Writing audio in same611TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/same/same611.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/same/same611.mp4\n",
"Task completed\n",
"612 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/school/school612.mp4.\n",
"MoviePy - Writing audio in school612TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/school/school612.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/school/school612.mp4\n",
"Task completed\n",
"613 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sorry/sorry613.mp4.\n",
"MoviePy - Writing audio in sorry613TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sorry/sorry613.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sorry/sorry613.mp4\n",
"Task completed\n",
"614 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sorry/sorry614.mp4.\n",
"MoviePy - Writing audio in sorry614TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sorry/sorry614.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sorry/sorry614.mp4\n",
"Task completed\n",
"615 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/thank you/thank you615.mp4.\n",
"MoviePy - Writing audio in thank you615TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/thank you/thank you615.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/thank you/thank you615.mp4\n",
"Task completed\n",
"616 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/thank you/thank you616.mp4.\n",
"MoviePy - Writing audio in thank you616TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/thank you/thank you616.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/thank you/thank you616.mp4\n",
"Task completed\n",
"617 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/what/what617.mp4.\n",
"MoviePy - Writing audio in what617TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/what/what617.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/what/what617.mp4\n",
"Task completed\n",
"618 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/when/when618.mp4.\n",
"MoviePy - Writing audio in when618TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/when/when618.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/when/when618.mp4\n",
"Task completed\n",
"619 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/where/where619.mp4.\n",
"MoviePy - Writing audio in where619TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/where/where619.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/where/where619.mp4\n",
"Task completed\n",
"620 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/who/who620.mp4.\n",
"MoviePy - Writing audio in who620TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/who/who620.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/who/who620.mp4\n",
"Task completed\n",
"621 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/who/who621.mp4.\n",
"MoviePy - Writing audio in who621TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/who/who621.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/who/who621.mp4\n",
"Task completed\n",
"622 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/work/work622.mp4.\n",
"MoviePy - Writing audio in work622TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/work/work622.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/work/work622.mp4\n",
"Task completed\n",
"623 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/work/work623.mp4.\n",
"MoviePy - Writing audio in work623TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/work/work623.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/work/work623.mp4\n",
"Task completed\n",
"624 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yes/yes624.mp4.\n",
"MoviePy - Writing audio in yes624TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yes/yes624.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/yes/yes624.mp4\n",
"Task completed\n",
"625 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yes/yes625.mp4.\n",
"MoviePy - Writing audio in yes625TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yes/yes625.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/yes/yes625.mp4\n",
"Task completed\n",
"626 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/you/you626.mp4.\n",
"MoviePy - Writing audio in you626TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/you/you626.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/you/you626.mp4\n",
"Task completed\n",
"627 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/you/you627.mp4.\n",
"MoviePy - Writing audio in you627TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/you/you627.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/you/you627.mp4\n",
"Task completed\n",
"628 ur https://www.youtube.com/watch?v=HUMEcnkvhJU&t=862s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/you/you628.mp4.\n",
"MoviePy - Writing audio in you628TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/you/you628.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/you/you628.mp4\n",
"Task completed\n",
"629 ur https://www.youtube.com/watch?v=wVrfhtSnUCQ\n",
"folder created\n",
"wVrfhtSnUCQ is unavailable\n",
"630 ur www.youtube.com/watch?v=aifqg8ePLMI\n",
"folder created\n",
"aifqg8ePLMI is a private video\n",
"631 ur www.youtube.com/watch?v=VwmM3tpIf80\n",
"folder created\n",
"VwmM3tpIf80 is a private video\n",
"632 ur https://www.youtube.com/watch?v=M1CrNP2izNg\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sorry/sorry632.mp4.\n",
"MoviePy - Writing audio in sorry632TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sorry/sorry632.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sorry/sorry632.mp4\n",
"Task completed\n",
"633 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bathroom/bathroom633.mp4.\n",
"MoviePy - Writing audio in bathroom633TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bathroom/bathroom633.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bathroom/bathroom633.mp4\n",
"Task completed\n",
"634 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sit/sit634.mp4.\n",
"MoviePy - Writing audio in sit634TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sit/sit634.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sit/sit634.mp4\n",
"Task completed\n",
"635 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yes/yes635.mp4.\n",
"MoviePy - Writing audio in yes635TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yes/yes635.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/yes/yes635.mp4\n",
"Task completed\n",
"636 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/no/no636.mp4.\n",
"MoviePy - Writing audio in no636TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/no/no636.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/no/no636.mp4\n",
"Task completed\n",
"637 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/finish/finish637.mp4.\n",
"MoviePy - Writing audio in finish637TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/finish/finish637.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/finish/finish637.mp4\n",
"Task completed\n",
"638 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sick/sick638.mp4.\n",
"MoviePy - Writing audio in sick638TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sick/sick638.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/sick/sick638.mp4\n",
"Task completed\n",
"639 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/happy/happy639.mp4.\n",
"MoviePy - Writing audio in happy639TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/happy/happy639.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/happy/happy639.mp4\n",
"Task completed\n",
"640 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hungry/hungry640.mp4.\n",
"MoviePy - Writing audio in hungry640TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hungry/hungry640.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/hungry/hungry640.mp4\n",
"Task completed\n",
"641 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sad/sad641.mp4.\n",
"MoviePy - Writing audio in sad641TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sad/sad641.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sad/sad641.mp4\n",
"Task completed\n",
"642 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/tired/tired642.mp4.\n",
"MoviePy - Writing audio in tired642TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/tired/tired642.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/tired/tired642.mp4\n",
"Task completed\n",
"643 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/good/good643.mp4.\n",
"MoviePy - Writing audio in good643TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/good/good643.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/good/good643.mp4\n",
"Task completed\n",
"644 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bad/bad644.mp4.\n",
"MoviePy - Writing audio in bad644TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bad/bad644.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bad/bad644.mp4\n",
"Task completed\n",
"645 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/help/help645.mp4.\n",
"MoviePy - Writing audio in help645TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/help/help645.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/help/help645.mp4\n",
"Task completed\n",
"646 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/water/water646.mp4.\n",
"MoviePy - Writing audio in water646TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/water/water646.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/water/water646.mp4\n",
"Task completed\n",
"647 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/draw/draw647.mp4.\n",
"MoviePy - Writing audio in draw647TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/draw/draw647.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/draw/draw647.mp4\n",
"Task completed\n",
"648 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/write/write648.mp4.\n",
"MoviePy - Writing audio in write648TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/write/write648.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/write/write648.mp4\n",
"Task completed\n",
"649 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/play/play649.mp4.\n",
"MoviePy - Writing audio in play649TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/play/play649.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/play/play649.mp4\n",
"Task completed\n",
"650 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/teacher/teacher650.mp4.\n",
"MoviePy - Writing audio in teacher650TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/teacher/teacher650.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/teacher/teacher650.mp4\n",
"Task completed\n",
"651 ur https://www.youtube.com/watch?v=bX1eJjB3nyA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/student/student651.mp4.\n",
"MoviePy - Writing audio in student651TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/student/student651.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/student/student651.mp4\n",
"Task completed\n",
"652 ur https://www.youtube.com/watch?v=Gj5_x1Xk49Q\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Gj5_x1Xk49Q is unavailable\n",
"653 ur https://www.youtube.com/watch?v=v_SV_07Gcfk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sit/sit653.mp4.\n",
"MoviePy - Writing audio in sit653TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sit/sit653.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sit/sit653.mp4\n",
"Task completed\n",
"654 ur https://www.youtube.com/watch?v=v_SV_07Gcfk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/table/table654.mp4.\n",
"MoviePy - Writing audio in table654TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/table/table654.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/table/table654.mp4\n",
"Task completed\n",
"655 ur https://www.youtube.com/watch?v=QBtof6T2N0Q\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/orange/orange655.mp4.\n",
"MoviePy - Writing audio in orange655TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/orange/orange655.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/orange/orange655.mp4\n",
"Task completed\n",
"656 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hello/hello656.mp4.\n",
"MoviePy - Writing audio in hello656TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hello/hello656.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hello/hello656.mp4\n",
"Task completed\n",
"657 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hello/hello657.mp4.\n",
"MoviePy - Writing audio in hello657TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hello/hello657.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hello/hello657.mp4\n",
"Task completed\n",
"658 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/good/good658.mp4.\n",
"MoviePy - Writing audio in good658TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/good/good658.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/good/good658.mp4\n",
"Task completed\n",
"659 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bad/bad659.mp4.\n",
"MoviePy - Writing audio in bad659TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bad/bad659.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bad/bad659.mp4\n",
"Task completed\n",
"660 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/right/right660.mp4.\n",
"MoviePy - Writing audio in right660TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/right/right660.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/right/right660.mp4\n",
"Task completed\n",
"661 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yes/yes661.mp4.\n",
"MoviePy - Writing audio in yes661TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yes/yes661.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/yes/yes661.mp4\n",
"Task completed\n",
"662 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/no/no662.mp4.\n",
"MoviePy - Writing audio in no662TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/no/no662.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/no/no662.mp4\n",
"Task completed\n",
"663 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/no/no663.mp4.\n",
"MoviePy - Writing audio in no663TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/no/no663.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/no/no663.mp4\n",
"Task completed\n",
"664 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sign/sign664.mp4.\n",
"MoviePy - Writing audio in sign664TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sign/sign664.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sign/sign664.mp4\n",
"Task completed\n",
"665 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/forget/forget665.mp4.\n",
"MoviePy - Writing audio in forget665TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/forget/forget665.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/forget/forget665.mp4\n",
"Task completed\n",
"666 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/thank you/thank you666.mp4.\n",
"MoviePy - Writing audio in thank you666TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/thank you/thank you666.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/thank you/thank you666.mp4\n",
"Task completed\n",
"667 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/thank you/thank you667.mp4.\n",
"MoviePy - Writing audio in thank you667TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/thank you/thank you667.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/thank you/thank you667.mp4\n",
"Task completed\n",
"668 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/same/same668.mp4.\n",
"MoviePy - Writing audio in same668TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/same/same668.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/same/same668.mp4\n",
"Task completed\n",
"669 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/same/same669.mp4.\n",
"MoviePy - Writing audio in same669TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/same/same669.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/same/same669.mp4\n",
"Task completed\n",
"670 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/different/different670.mp4.\n",
"MoviePy - Writing audio in different670TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/different/different670.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/different/different670.mp4\n",
"Task completed\n",
"671 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/know/know671.mp4.\n",
"MoviePy - Writing audio in know671TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/know/know671.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/know/know671.mp4\n",
"Task completed\n",
"672 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/know/know672.mp4.\n",
"MoviePy - Writing audio in know672TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/know/know672.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/know/know672.mp4\n",
"Task completed\n",
"673 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/again/again673.mp4.\n",
"MoviePy - Writing audio in again673TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/again/again673.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/again/again673.mp4\n",
"Task completed\n",
"674 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/understand/understand674.mp4.\n",
"MoviePy - Writing audio in understand674TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/understand/understand674.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/understand/understand674.mp4\n",
"Task completed\n",
"675 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/student/student675.mp4.\n",
"MoviePy - Writing audio in student675TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/student/student675.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/student/student675.mp4\n",
"Task completed\n",
"676 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/student/student676.mp4.\n",
"MoviePy - Writing audio in student676TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/student/student676.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/student/student676.mp4\n",
"Task completed\n",
"677 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/teacher/teacher677.mp4.\n",
"MoviePy - Writing audio in teacher677TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/teacher/teacher677.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/teacher/teacher677.mp4\n",
"Task completed\n",
"678 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/name/name678.mp4.\n",
"MoviePy - Writing audio in name678TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/name/name678.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/name/name678.mp4\n",
"Task completed\n",
"679 ur https://www.youtube.com/watch?v=0v4Y9WGhES8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nice/nice679.mp4.\n",
"MoviePy - Writing audio in nice679TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nice/nice679.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nice/nice679.mp4\n",
"Task completed\n",
"680 ur https://www.youtube.com/watch?v=gQKqDXE-LJ8\n",
"folder created\n",
"gQKqDXE-LJ8 is a private video\n",
"681 ur https://www.youtube.com/watch?v=gQKqDXE-LJ8\n",
"folder created\n",
"gQKqDXE-LJ8 is a private video\n",
"682 ur https://www.youtube.com/watch?v=gQKqDXE-LJ8\n",
"folder created\n",
"gQKqDXE-LJ8 is a private video\n",
"683 ur https://www.youtube.com/watch?v=gQKqDXE-LJ8\n",
"folder created\n",
"gQKqDXE-LJ8 is a private video\n",
"684 ur https://www.youtube.com/watch?v=gQKqDXE-LJ8\n",
"folder created\n",
"gQKqDXE-LJ8 is a private video\n",
"685 ur https://www.youtube.com/watch?v=9jy2ywb8eAU\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hearing/hearing685.mp4.\n",
"MoviePy - Writing audio in hearing685TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hearing/hearing685.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hearing/hearing685.mp4\n",
"Task completed\n",
"686 ur www.youtube.com/watch?v=1lifyGwZN7g\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/drink/drink686.mp4.\n",
"MoviePy - Writing audio in drink686TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/drink/drink686.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/drink/drink686.mp4\n",
"Task completed\n",
"687 ur https://www.youtube.com/watch?v=uUmicpSlANQ\n",
"folder created\n",
"uUmicpSlANQ is age restricted, and can't be accessed without logging in.\n",
"688 ur https://www.youtube.com/watch?v=uUmicpSlANQ\n",
"folder created\n",
"uUmicpSlANQ is age restricted, and can't be accessed without logging in.\n",
"689 ur https://www.youtube.com/watch?v=uUmicpSlANQ\n",
"folder created\n",
"uUmicpSlANQ is age restricted, and can't be accessed without logging in.\n",
"690 ur https://www.youtube.com/watch?v=uUmicpSlANQ\n",
"folder created\n",
"uUmicpSlANQ is age restricted, and can't be accessed without logging in.\n",
"691 ur https://www.youtube.com/watch?v=1bj72qXSy8c\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/play/play691.mp4.\n",
"MoviePy - Writing audio in play691TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/play/play691.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/play/play691.mp4\n",
"Task completed\n",
"692 ur https://www.youtube.com/watch?v=1bj72qXSy8c\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sick/sick692.mp4.\n",
"MoviePy - Writing audio in sick692TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sick/sick692.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sick/sick692.mp4\n",
"Task completed\n",
"693 ur https://www.youtube.com/watch?v=1bj72qXSy8c\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/doctor/doctor693.mp4.\n",
"MoviePy - Writing audio in doctor693TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/doctor/doctor693.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/doctor/doctor693.mp4\n",
"Task completed\n",
"694 ur https://www.youtube.com/watch?v=1bj72qXSy8c\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/night/night694.mp4.\n",
"MoviePy - Writing audio in night694TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/night/night694.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/night/night694.mp4\n",
"Task completed\n",
"695 ur https://www.youtube.com/watch?v=1bj72qXSy8c\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/like/like695.mp4.\n",
"MoviePy - Writing audio in like695TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/like/like695.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/like/like695.mp4\n",
"Task completed\n",
"696 ur https://www.youtube.com/watch?v=1bj72qXSy8c\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nice/nice696.mp4.\n",
"MoviePy - Writing audio in nice696TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nice/nice696.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nice/nice696.mp4\n",
"Task completed\n",
"697 ur https://www.youtube.com/watch?v=1bj72qXSy8c\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/work/work697.mp4.\n",
"MoviePy - Writing audio in work697TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/work/work697.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/work/work697.mp4\n",
"Task completed\n",
"698 ur https://www.youtube.com/watch?v=1bj72qXSy8c\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/finish/finish698.mp4.\n",
"MoviePy - Writing audio in finish698TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/finish/finish698.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/finish/finish698.mp4\n",
"Task completed\n",
"699 ur https://www.youtube.com/watch?v=4h3wQWXM0PM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/but/but699.mp4.\n",
"MoviePy - Writing audio in but699TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/but/but699.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/but/but699.mp4\n",
"Task completed\n",
"700 ur https://www.youtube.com/watch?v=mJ-GLSd8EHo\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bird/bird700.mp4.\n",
"MoviePy - Writing audio in bird700TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bird/bird700.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bird/bird700.mp4\n",
"Task completed\n",
"701 ur www.youtube.com/watch?v=7ECOJV4I3Gs\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/father/father701.mp4.\n",
"MoviePy - Writing audio in father701TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/father/father701.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/father/father701.mp4\n",
"Task completed\n",
"702 ur www.youtube.com/watch?v=fdNKKn0RS1g\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/pencil/pencil702.mp4.\n",
"MoviePy - Writing audio in pencil702TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/pencil/pencil702.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/pencil/pencil702.mp4\n",
"Task completed\n",
"703 ur www.youtube.com/watch?v=zgYUzElmp1k\n",
"folder created\n",
"zgYUzElmp1k is a private video\n",
"704 ur www.youtube.com/watch?v=gXguKMyUllU\n",
"folder created\n",
"gXguKMyUllU is a private video\n",
"705 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"706 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"707 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"708 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"709 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"710 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"711 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"712 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"713 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"714 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"715 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"716 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"717 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"718 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"719 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"720 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"721 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"722 ur https://www.youtube.com/watch?v=FsfHnBqWll0\n",
"folder created\n",
"FsfHnBqWll0 is unavailable\n",
"723 ur https://www.youtube.com/watch?v=FwrpfdqyEDo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/learn/learn723.mp4.\n",
"MoviePy - Writing audio in learn723TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/learn/learn723.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/learn/learn723.mp4\n",
"Task completed\n",
"724 ur https://www.youtube.com/watch?v=kAgwFK9QMPg\n",
"folder created\n",
"kAgwFK9QMPg is age restricted, and can't be accessed without logging in.\n",
"725 ur https://www.youtube.com/watch?v=kAgwFK9QMPg\n",
"folder created\n",
"kAgwFK9QMPg is age restricted, and can't be accessed without logging in.\n",
"726 ur https://www.youtube.com/watch?v=bTSejTfpGR8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/big/big726.mp4.\n",
"MoviePy - Writing audio in big726TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/big/big726.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/big/big726.mp4\n",
"Task completed\n",
"727 ur www.youtube.com/watch?v=ZyL9f_qoGug\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"ZyL9f_qoGug is unavailable\n",
"728 ur www.youtube.com/watch?v=c5a0wBqihes\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/mother/mother728.mp4.\n",
"MoviePy - Writing audio in mother728TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/mother/mother728.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/mother/mother728.mp4\n",
"Task completed\n",
"729 ur https://www.youtube.com/watch?v=qwBy3mikLAU\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/english/english729.mp4.\n",
"MoviePy - Writing audio in english729TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/english/english729.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/english/english729.mp4\n",
"Task completed\n",
"730 ur https://www.youtube.com/watch?v=EyWuC4JL4Tk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/like/like730.mp4.\n",
"MoviePy - Writing audio in like730TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/like/like730.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/like/like730.mp4\n",
"Task completed\n",
"731 ur www.youtube.com/watch?v=1VOWVnWenrI\n",
"folder created\n",
"1VOWVnWenrI is unavailable\n",
"732 ur https://www.youtube.com/watch?v=XP4JFpmznzE\n",
"folder created\n",
"XP4JFpmznzE is a private video\n",
"733 ur https://www.youtube.com/watch?v=fii2boOPUnY\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/lost/lost733.mp4.\n",
"MoviePy - Writing audio in lost733TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/lost/lost733.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/lost/lost733.mp4\n",
"Task completed\n",
"734 ur https://www.youtube.com/watch?v=b4CVpVEes1g\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/pink/pink734.mp4.\n",
"MoviePy - Writing audio in pink734TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/pink/pink734.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/pink/pink734.mp4\n",
"Task completed\n",
"735 ur www.youtube.com/watch?v=UTn4VLbe7Fg\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sit/sit735.mp4.\n",
"MoviePy - Writing audio in sit735TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sit/sit735.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/sit/sit735.mp4\n",
"Task completed\n",
"736 ur https://www.youtube.com/watch?v=PtKOQORhrzQ\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/boring/boring736.mp4.\n",
"MoviePy - Writing audio in boring736TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/boring/boring736.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/boring/boring736.mp4\n",
"Task completed\n",
"737 ur www.youtube.com/watch?v=jknOnIhAbNo\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"jknOnIhAbNo is unavailable\n",
"738 ur https://www.youtube.com/watch?v=x0q-NTYinOY\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/different/different738.mp4.\n",
"MoviePy - Writing audio in different738TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/different/different738.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/different/different738.mp4\n",
"Task completed\n",
"739 ur https://www.youtube.com/watch?v=x0q-NTYinOY\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/right/right739.mp4.\n",
"MoviePy - Writing audio in right739TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/right/right739.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/right/right739.mp4\n",
"Task completed\n",
"740 ur https://www.youtube.com/watch?v=x0q-NTYinOY\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/right/right740.mp4.\n",
"MoviePy - Writing audio in right740TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/right/right740.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/right/right740.mp4\n",
"Task completed\n",
"741 ur www.youtube.com/watch?v=ruARsan34x4\n",
"folder created\n",
"ruARsan34x4 is unavailable\n",
"742 ur www.youtube.com/watch?v=Ddd2ZZNFhVI\n",
"folder created\n",
"Ddd2ZZNFhVI is unavailable\n",
"743 ur www.youtube.com/watch?v=eMZb5qFzObg\n",
"folder created\n",
"eMZb5qFzObg is a private video\n",
"744 ur https://www.youtube.com/watch?v=isyYkVN5w4o\n",
"folder created\n",
"isyYkVN5w4o is a private video\n",
"745 ur www.youtube.com/watch?v=X7vWbKADW8w\n",
"folder created\n",
"X7vWbKADW8w is a private video\n",
"746 ur https://www.youtube.com/watch?v=IAYDcpRyf1Q\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/black/black746.mp4.\n",
"MoviePy - Writing audio in black746TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/black/black746.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/black/black746.mp4\n",
"Task completed\n",
"747 ur www.youtube.com/watch?v=Ji0_VUFdAVY\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yellow/yellow747.mp4.\n",
"MoviePy - Writing audio in yellow747TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yellow/yellow747.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/yellow/yellow747.mp4\n",
"Task completed\n",
"748 ur https://www.youtube.com/watch?v=M6_hX1QTzIM\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"M6_hX1QTzIM is unavailable\n",
"749 ur https://www.youtube.com/watch?v=JYF-AfMbUNw\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/family/family749.mp4.\n",
"MoviePy - Writing audio in family749TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/family/family749.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/family/family749.mp4\n",
"Task completed\n",
"750 ur https://www.youtube.com/watch?v=JYF-AfMbUNw\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/mother/mother750.mp4.\n",
"MoviePy - Writing audio in mother750TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/mother/mother750.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/mother/mother750.mp4\n",
"Task completed\n",
"751 ur https://www.youtube.com/watch?v=JYF-AfMbUNw\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/father/father751.mp4.\n",
"MoviePy - Writing audio in father751TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/father/father751.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/father/father751.mp4\n",
"Task completed\n",
"752 ur https://www.youtube.com/watch?v=JYF-AfMbUNw\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sister/sister752.mp4.\n",
"MoviePy - Writing audio in sister752TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sister/sister752.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sister/sister752.mp4\n",
"Task completed\n",
"753 ur https://www.youtube.com/watch?v=JYF-AfMbUNw\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/brother/brother753.mp4.\n",
"MoviePy - Writing audio in brother753TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/brother/brother753.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/brother/brother753.mp4\n",
"Task completed\n",
"754 ur https://www.youtube.com/watch?v=JYF-AfMbUNw\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/cousin/cousin754.mp4.\n",
"MoviePy - Writing audio in cousin754TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/cousin/cousin754.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/cousin/cousin754.mp4\n",
"Task completed\n",
"755 ur https://www.youtube.com/watch?v=JYF-AfMbUNw\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/friend/friend755.mp4.\n",
"MoviePy - Writing audio in friend755TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/friend/friend755.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/friend/friend755.mp4\n",
"Task completed\n",
"756 ur https://www.youtube.com/watch?v=JYF-AfMbUNw\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/grandfather/grandfather756.mp4.\n",
"MoviePy - Writing audio in grandfather756TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/grandfather/grandfather756.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/grandfather/grandfather756.mp4\n",
"Task completed\n",
"757 ur https://www.youtube.com/watch?v=JYF-AfMbUNw\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/grandmother/grandmother757.mp4.\n",
"MoviePy - Writing audio in grandmother757TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/grandmother/grandmother757.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/grandmother/grandmother757.mp4\n",
"Task completed\n",
"758 ur https://www.youtube.com/watch?v=JYF-AfMbUNw\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/you/you758.mp4.\n",
"MoviePy - Writing audio in you758TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/you/you758.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/you/you758.mp4\n",
"Task completed\n",
"759 ur https://www.youtube.com/watch?v=JYF-AfMbUNw\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/no/no759.mp4.\n",
"MoviePy - Writing audio in no759TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/no/no759.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/no/no759.mp4\n",
"Task completed\n",
"760 ur https://www.youtube.com/watch?v=JYF-AfMbUNw\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nothing/nothing760.mp4.\n",
"MoviePy - Writing audio in nothing760TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nothing/nothing760.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nothing/nothing760.mp4\n",
"Task completed\n",
"761 ur www.youtube.com/watch?v=75OHf34DQXk\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"75OHf34DQXk is a private video\n",
"762 ur https://www.youtube.com/watch?v=CmKYKBQuHf4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/eat/eat762.mp4.\n",
"MoviePy - Writing audio in eat762TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/eat/eat762.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/eat/eat762.mp4\n",
"Task completed\n",
"763 ur https://www.youtube.com/watch?v=CmKYKBQuHf4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/chicken/chicken763.mp4.\n",
"MoviePy - Writing audio in chicken763TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/chicken/chicken763.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/chicken/chicken763.mp4\n",
"Task completed\n",
"764 ur https://www.youtube.com/watch?v=CmKYKBQuHf4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/chicken/chicken764.mp4.\n",
"MoviePy - Writing audio in chicken764TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/chicken/chicken764.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/chicken/chicken764.mp4\n",
"Task completed\n",
"765 ur https://www.youtube.com/watch?v=CmKYKBQuHf4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/water/water765.mp4.\n",
"MoviePy - Writing audio in water765TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/water/water765.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/water/water765.mp4\n",
"Task completed\n",
"766 ur https://www.youtube.com/watch?v=CmKYKBQuHf4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/water/water766.mp4.\n",
"MoviePy - Writing audio in water766TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/water/water766.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/water/water766.mp4\n",
"Task completed\n",
"767 ur https://www.youtube.com/watch?v=CmKYKBQuHf4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/milk/milk767.mp4.\n",
"MoviePy - Writing audio in milk767TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/milk/milk767.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/milk/milk767.mp4\n",
"Task completed\n",
"768 ur https://www.youtube.com/watch?v=ig7SKr3tvWc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/school/school768.mp4.\n",
"MoviePy - Writing audio in school768TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/school/school768.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/school/school768.mp4\n",
"Task completed\n",
"769 ur https://www.youtube.com/watch?v=XdA0TlfPB48\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/walk/walk769.mp4.\n",
"MoviePy - Writing audio in walk769TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/walk/walk769.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/walk/walk769.mp4\n",
"Task completed\n",
"770 ur https://www.youtube.com/watch?v=Zwk1zkBU2UE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yellow/yellow770.mp4.\n",
"MoviePy - Writing audio in yellow770TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yellow/yellow770.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/yellow/yellow770.mp4\n",
"Task completed\n",
"771 ur https://www.youtube.com/watch?v=AF74PPymr3Y\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"AF74PPymr3Y is a private video\n",
"772 ur https://www.youtube.com/watch?v=tEdT4rmOkbI\n",
"folder created\n",
"tEdT4rmOkbI is unavailable\n",
"773 ur www.youtube.com/watch?v=cJ8HOKaGrlA\n",
"folder created\n",
"cJ8HOKaGrlA is a private video\n",
"774 ur https://www.youtube.com/watch?v=kMO8kgPiQHY\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yes/yes774.mp4.\n",
"MoviePy - Writing audio in yes774TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yes/yes774.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/yes/yes774.mp4\n",
"Task completed\n",
"775 ur https://www.youtube.com/watch?v=ic7JaMz2jmo\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bird/bird775.mp4.\n",
"MoviePy - Writing audio in bird775TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bird/bird775.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bird/bird775.mp4\n",
"Task completed\n",
"776 ur https://www.youtube.com/watch?v=UjiCWH8PSvM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/table/table776.mp4.\n",
"MoviePy - Writing audio in table776TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/table/table776.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/table/table776.mp4\n",
"Task completed\n",
"777 ur https://www.youtube.com/watch?v=UjiCWH8PSvM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sit/sit777.mp4.\n",
"MoviePy - Writing audio in sit777TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sit/sit777.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sit/sit777.mp4\n",
"Task completed\n",
"778 ur https://www.youtube.com/watch?v=UjiCWH8PSvM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/book/book778.mp4.\n",
"MoviePy - Writing audio in book778TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/book/book778.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/book/book778.mp4\n",
"Task completed\n",
"779 ur https://www.youtube.com/watch?v=UjiCWH8PSvM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/paper/paper779.mp4.\n",
"MoviePy - Writing audio in paper779TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/paper/paper779.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/paper/paper779.mp4\n",
"Task completed\n",
"780 ur https://www.youtube.com/watch?v=UjiCWH8PSvM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/pencil/pencil780.mp4.\n",
"MoviePy - Writing audio in pencil780TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/pencil/pencil780.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/pencil/pencil780.mp4\n",
"Task completed\n",
"781 ur https://www.youtube.com/watch?v=UjiCWH8PSvM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/pencil/pencil781.mp4.\n",
"MoviePy - Writing audio in pencil781TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/pencil/pencil781.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/pencil/pencil781.mp4\n",
"Task completed\n",
"782 ur https://www.youtube.com/watch?v=UjiCWH8PSvM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/spring/spring782.mp4.\n",
"MoviePy - Writing audio in spring782TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/spring/spring782.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/spring/spring782.mp4\n",
"Task completed\n",
"783 ur https://www.youtube.com/watch?v=_wijo648v0g\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/milk/milk783.mp4.\n",
"MoviePy - Writing audio in milk783TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/milk/milk783.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/milk/milk783.mp4\n",
"Task completed\n",
"784 ur www.youtube.com/watch?v=XleDZhobVno\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/eat/eat784.mp4.\n",
"MoviePy - Writing audio in eat784TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/eat/eat784.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/eat/eat784.mp4\n",
"Task completed\n",
"785 ur https://www.youtube.com/watch?v=uUtWckN5NJ0\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"uUtWckN5NJ0 is a private video\n",
"786 ur https://www.youtube.com/watch?v=zJHMuqY5wnY\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nothing/nothing786.mp4.\n",
"MoviePy - Writing audio in nothing786TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nothing/nothing786.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nothing/nothing786.mp4\n",
"Task completed\n",
"787 ur https://www.youtube.com/watch?v=T-TyepUFxlI\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/how/how787.mp4.\n",
"MoviePy - Writing audio in how787TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/how/how787.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/how/how787.mp4\n",
"Task completed\n",
"788 ur https://www.youtube.com/watch?v=VcRx3U-HpTE\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/black/black788.mp4.\n",
"MoviePy - Writing audio in black788TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/black/black788.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/black/black788.mp4\n",
"Task completed\n",
"789 ur https://www.youtube.com/watch?v=VcRx3U-HpTE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/white/white789.mp4.\n",
"MoviePy - Writing audio in white789TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/white/white789.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/white/white789.mp4\n",
"Task completed\n",
"790 ur www.youtube.com/watch?v=lBdL0qoRtPI\n",
"folder created\n",
"lBdL0qoRtPI is a private video\n",
"791 ur https://www.youtube.com/watch?v=FWDwbVrTZTM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/france/france791.mp4.\n",
"MoviePy - Writing audio in france791TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/france/france791.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/france/france791.mp4\n",
"Task completed\n",
"792 ur https://www.youtube.com/watch?v=sgTGtWhg0YQ\n",
"folder created\n",
"sgTGtWhg0YQ is a private video\n",
"793 ur https://www.youtube.com/watch?v=LHgwhGqtGJI\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/right/right793.mp4.\n",
"MoviePy - Writing audio in right793TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/right/right793.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/right/right793.mp4\n",
"Task completed\n",
"794 ur https://www.youtube.com/watch?v=Xq3QAqQXpTM\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/happy/happy794.mp4.\n",
"MoviePy - Writing audio in happy794TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/happy/happy794.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/happy/happy794.mp4\n",
"Task completed\n",
"795 ur https://www.youtube.com/watch?v=Xq3QAqQXpTM\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sorry/sorry795.mp4.\n",
"MoviePy - Writing audio in sorry795TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sorry/sorry795.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/sorry/sorry795.mp4\n",
"Task completed\n",
"796 ur https://www.youtube.com/watch?v=DuvfSXWf0yI\n",
"folder created\n",
"DuvfSXWf0yI is unavailable\n",
"797 ur https://www.youtube.com/watch?v=0qeMFifNqC4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/like/like797.mp4.\n",
"MoviePy - Writing audio in like797TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/like/like797.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/like/like797.mp4\n",
"Task completed\n",
"798 ur https://www.youtube.com/watch?v=QwxSYpnuATA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/orange/orange798.mp4.\n",
"MoviePy - Writing audio in orange798TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/orange/orange798.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/orange/orange798.mp4\n",
"Task completed\n",
"799 ur https://www.youtube.com/watch?v=Ber0gyYyBos\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/blue/blue799.mp4.\n",
"MoviePy - Writing audio in blue799TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/blue/blue799.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/blue/blue799.mp4\n",
"Task completed\n",
"800 ur www.youtube.com/watch?v=CU4oBcIEWz0\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"CU4oBcIEWz0 is a private video\n",
"801 ur https://www.youtube.com/watch?v=p_St7cN8Slw\n",
"folder created\n",
"p_St7cN8Slw is unavailable\n",
"802 ur www.youtube.com/watch?v=rKWxvDjIcvg\n",
"folder created\n",
"rKWxvDjIcvg is a private video\n",
"803 ur https://www.youtube.com/watch?v=oonCVbzm2UE\n",
"folder created\n",
"oonCVbzm2UE is age restricted, and can't be accessed without logging in.\n",
"804 ur https://www.youtube.com/watch?v=3A0iSc2umlg\n",
"folder created\n",
"3A0iSc2umlg is unavailable\n",
"805 ur https://www.youtube.com/watch?v=3A0iSc2umlg\n",
"folder created\n",
"3A0iSc2umlg is unavailable\n",
"806 ur https://www.youtube.com/watch?v=3A0iSc2umlg\n",
"folder created\n",
"3A0iSc2umlg is unavailable\n",
"807 ur https://www.youtube.com/watch?v=3A0iSc2umlg\n",
"folder created\n",
"3A0iSc2umlg is unavailable\n",
"808 ur https://www.youtube.com/watch?v=3A0iSc2umlg\n",
"folder created\n",
"3A0iSc2umlg is unavailable\n",
"809 ur https://www.youtube.com/watch?v=3A0iSc2umlg\n",
"folder created\n",
"3A0iSc2umlg is unavailable\n",
"810 ur https://www.youtube.com/watch?v=3A0iSc2umlg\n",
"folder created\n",
"3A0iSc2umlg is unavailable\n",
"811 ur https://www.youtube.com/watch?v=3A0iSc2umlg\n",
"folder created\n",
"3A0iSc2umlg is unavailable\n",
"812 ur https://www.youtube.com/watch?v=3A0iSc2umlg\n",
"folder created\n",
"3A0iSc2umlg is unavailable\n",
"813 ur https://www.youtube.com/watch?v=3A0iSc2umlg\n",
"folder created\n",
"3A0iSc2umlg is unavailable\n",
"814 ur https://www.youtube.com/watch?v=3A0iSc2umlg\n",
"folder created\n",
"3A0iSc2umlg is unavailable\n",
"815 ur https://www.youtube.com/watch?v=3A0iSc2umlg\n",
"folder created\n",
"3A0iSc2umlg is unavailable\n",
"816 ur https://www.youtube.com/watch?v=qb7wnmYhgC8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/understand/understand816.mp4.\n",
"MoviePy - Writing audio in understand816TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/understand/understand816.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/understand/understand816.mp4\n",
"Task completed\n",
"817 ur www.youtube.com/watch?v=DikA_15hmng\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"DikA_15hmng is a private video\n",
"818 ur https://www.youtube.com/watch?v=sQELZPmche8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bathroom/bathroom818.mp4.\n",
"MoviePy - Writing audio in bathroom818TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bathroom/bathroom818.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bathroom/bathroom818.mp4\n",
"Task completed\n",
"819 ur https://www.youtube.com/watch?v=sQELZPmche8\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/water/water819.mp4.\n",
"MoviePy - Writing audio in water819TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/water/water819.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/water/water819.mp4\n",
"Task completed\n",
"820 ur https://www.youtube.com/watch?v=sQELZPmche8\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/please/please820.mp4.\n",
"MoviePy - Writing audio in please820TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/please/please820.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/please/please820.mp4\n",
"Task completed\n",
"821 ur https://www.youtube.com/watch?v=sQELZPmche8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/thank you/thank you821.mp4.\n",
"MoviePy - Writing audio in thank you821TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/thank you/thank you821.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/thank you/thank you821.mp4\n",
"Task completed\n",
"822 ur https://www.youtube.com/watch?v=sQELZPmche8\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sorry/sorry822.mp4.\n",
"MoviePy - Writing audio in sorry822TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sorry/sorry822.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/sorry/sorry822.mp4\n",
"Task completed\n",
"823 ur https://www.youtube.com/watch?v=sQELZPmche8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/understand/understand823.mp4.\n",
"MoviePy - Writing audio in understand823TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/understand/understand823.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/understand/understand823.mp4\n",
"Task completed\n",
"824 ur https://www.youtube.com/watch?v=sQELZPmche8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yes/yes824.mp4.\n",
"MoviePy - Writing audio in yes824TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yes/yes824.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/yes/yes824.mp4\n",
"Task completed\n",
"825 ur https://www.youtube.com/watch?v=sQELZPmche8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/no/no825.mp4.\n",
"MoviePy - Writing audio in no825TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/no/no825.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/no/no825.mp4\n",
"Task completed\n",
"826 ur https://www.youtube.com/watch?v=sQELZPmche8\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/help/help826.mp4.\n",
"MoviePy - Writing audio in help826TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/help/help826.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/help/help826.mp4\n",
"Task completed\n",
"827 ur www.youtube.com/watch?v=-m_jlfbs37k\n",
"folder created\n",
"-m_jlfbs37k is a private video\n",
"828 ur https://www.youtube.com/watch?v=1le36_SoBLE\n",
"folder created\n",
"1le36_SoBLE is unavailable\n",
"829 ur www.youtube.com/watch?v=p-zYYFu5PQA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/red/red829.mp4.\n",
"MoviePy - Writing audio in red829TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/red/red829.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/red/red829.mp4\n",
"Task completed\n",
"830 ur https://www.youtube.com/watch?v=afwqCG7GmrQ\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/learn/learn830.mp4.\n",
"MoviePy - Writing audio in learn830TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/learn/learn830.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/learn/learn830.mp4\n",
"Task completed\n",
"831 ur https://www.youtube.com/watch?v=afwqCG7GmrQ\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/read/read831.mp4.\n",
"MoviePy - Writing audio in read831TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/read/read831.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/read/read831.mp4\n",
"Task completed\n",
"832 ur https://www.youtube.com/watch?v=afwqCG7GmrQ\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/write/write832.mp4.\n",
"MoviePy - Writing audio in write832TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/write/write832.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/write/write832.mp4\n",
"Task completed\n",
"833 ur https://www.youtube.com/watch?v=afwqCG7GmrQ\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/paper/paper833.mp4.\n",
"MoviePy - Writing audio in paper833TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/paper/paper833.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/paper/paper833.mp4\n",
"Task completed\n",
"834 ur https://www.youtube.com/watch?v=afwqCG7GmrQ\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/book/book834.mp4.\n",
"MoviePy - Writing audio in book834TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/book/book834.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/book/book834.mp4\n",
"Task completed\n",
"835 ur https://www.youtube.com/watch?v=gVUwBsPOUjk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/fish/fish835.mp4.\n",
"MoviePy - Writing audio in fish835TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/fish/fish835.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/fish/fish835.mp4\n",
"Task completed\n",
"836 ur https://www.youtube.com/watch?v=gVUwBsPOUjk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/fish/fish836.mp4.\n",
"MoviePy - Writing audio in fish836TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/fish/fish836.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/fish/fish836.mp4\n",
"Task completed\n",
"837 ur https://www.youtube.com/watch?v=gVUwBsPOUjk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/fish/fish837.mp4.\n",
"MoviePy - Writing audio in fish837TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/fish/fish837.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/fish/fish837.mp4\n",
"Task completed\n",
"838 ur https://www.youtube.com/watch?v=gVUwBsPOUjk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/computer/computer838.mp4.\n",
"MoviePy - Writing audio in computer838TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/computer/computer838.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/computer/computer838.mp4\n",
"Task completed\n",
"839 ur https://www.youtube.com/watch?v=gVUwBsPOUjk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/computer/computer839.mp4.\n",
"MoviePy - Writing audio in computer839TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/computer/computer839.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/computer/computer839.mp4\n",
"Task completed\n",
"840 ur https://www.youtube.com/watch?v=gVUwBsPOUjk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/computer/computer840.mp4.\n",
"MoviePy - Writing audio in computer840TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/computer/computer840.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/computer/computer840.mp4\n",
"Task completed\n",
"841 ur https://www.youtube.com/watch?v=-IEFUtDrWCg\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/lost/lost841.mp4.\n",
"MoviePy - Writing audio in lost841TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/lost/lost841.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/lost/lost841.mp4\n",
"Task completed\n",
"842 ur www.youtube.com/watch?v=Zg-ygjairZQ\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/paper/paper842.mp4.\n",
"MoviePy - Writing audio in paper842TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/paper/paper842.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/paper/paper842.mp4\n",
"Task completed\n",
"843 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/red/red843.mp4.\n",
"MoviePy - Writing audio in red843TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/red/red843.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/red/red843.mp4\n",
"Task completed\n",
"844 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yellow/yellow844.mp4.\n",
"MoviePy - Writing audio in yellow844TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yellow/yellow844.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/yellow/yellow844.mp4\n",
"Task completed\n",
"845 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/blue/blue845.mp4.\n",
"MoviePy - Writing audio in blue845TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/blue/blue845.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/blue/blue845.mp4\n",
"Task completed\n",
"846 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/pink/pink846.mp4.\n",
"MoviePy - Writing audio in pink846TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/pink/pink846.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/pink/pink846.mp4\n",
"Task completed\n",
"847 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/brown/brown847.mp4.\n",
"MoviePy - Writing audio in brown847TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/brown/brown847.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/brown/brown847.mp4\n",
"Task completed\n",
"848 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/orange/orange848.mp4.\n",
"MoviePy - Writing audio in orange848TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/orange/orange848.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/orange/orange848.mp4\n",
"Task completed\n",
"849 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/green/green849.mp4.\n",
"MoviePy - Writing audio in green849TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/green/green849.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/green/green849.mp4\n",
"Task completed\n",
"850 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/white/white850.mp4.\n",
"MoviePy - Writing audio in white850TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/white/white850.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/white/white850.mp4\n",
"Task completed\n",
"851 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/black/black851.mp4.\n",
"MoviePy - Writing audio in black851TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/black/black851.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/black/black851.mp4\n",
"Task completed\n",
"852 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hello/hello852.mp4.\n",
"MoviePy - Writing audio in hello852TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hello/hello852.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hello/hello852.mp4\n",
"Task completed\n",
"853 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/please/please853.mp4.\n",
"MoviePy - Writing audio in please853TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/please/please853.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/please/please853.mp4\n",
"Task completed\n",
"854 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sorry/sorry854.mp4.\n",
"MoviePy - Writing audio in sorry854TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sorry/sorry854.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sorry/sorry854.mp4\n",
"Task completed\n",
"855 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/what/what855.mp4.\n",
"MoviePy - Writing audio in what855TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/what/what855.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/what/what855.mp4\n",
"Task completed\n",
"856 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/who/who856.mp4.\n",
"MoviePy - Writing audio in who856TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/who/who856.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/who/who856.mp4\n",
"Task completed\n",
"857 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/when/when857.mp4.\n",
"MoviePy - Writing audio in when857TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/when/when857.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/when/when857.mp4\n",
"Task completed\n",
"858 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/where/where858.mp4.\n",
"MoviePy - Writing audio in where858TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/where/where858.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/where/where858.mp4\n",
"Task completed\n",
"859 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/how/how859.mp4.\n",
"MoviePy - Writing audio in how859TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/how/how859.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/how/how859.mp4\n",
"Task completed\n",
"860 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/deaf/deaf860.mp4.\n",
"MoviePy - Writing audio in deaf860TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/deaf/deaf860.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/deaf/deaf860.mp4\n",
"Task completed\n",
"861 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/man/man861.mp4.\n",
"MoviePy - Writing audio in man861TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/man/man861.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/man/man861.mp4\n",
"Task completed\n",
"862 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/woman/woman862.mp4.\n",
"MoviePy - Writing audio in woman862TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/woman/woman862.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/woman/woman862.mp4\n",
"Task completed\n",
"863 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/boy/boy863.mp4.\n",
"MoviePy - Writing audio in boy863TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/boy/boy863.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/boy/boy863.mp4\n",
"Task completed\n",
"864 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/girl/girl864.mp4.\n",
"MoviePy - Writing audio in girl864TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/girl/girl864.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/girl/girl864.mp4\n",
"Task completed\n",
"865 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/book/book865.mp4.\n",
"MoviePy - Writing audio in book865TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/book/book865.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/book/book865.mp4\n",
"Task completed\n",
"866 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sit/sit866.mp4.\n",
"MoviePy - Writing audio in sit866TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sit/sit866.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sit/sit866.mp4\n",
"Task completed\n",
"867 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/paper/paper867.mp4.\n",
"MoviePy - Writing audio in paper867TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/paper/paper867.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/paper/paper867.mp4\n",
"Task completed\n",
"868 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sit/sit868.mp4.\n",
"MoviePy - Writing audio in sit868TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sit/sit868.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sit/sit868.mp4\n",
"Task completed\n",
"869 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/dance/dance869.mp4.\n",
"MoviePy - Writing audio in dance869TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/dance/dance869.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/dance/dance869.mp4\n",
"Task completed\n",
"870 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/write/write870.mp4.\n",
"MoviePy - Writing audio in write870TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/write/write870.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/write/write870.mp4\n",
"Task completed\n",
"871 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/draw/draw871.mp4.\n",
"MoviePy - Writing audio in draw871TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/draw/draw871.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/draw/draw871.mp4\n",
"Task completed\n",
"872 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/again/again872.mp4.\n",
"MoviePy - Writing audio in again872TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/again/again872.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/again/again872.mp4\n",
"Task completed\n",
"873 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/right/right873.mp4.\n",
"MoviePy - Writing audio in right873TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/right/right873.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/right/right873.mp4\n",
"Task completed\n",
"874 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/same/same874.mp4.\n",
"MoviePy - Writing audio in same874TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/same/same874.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/same/same874.mp4\n",
"Task completed\n",
"875 ur https://www.youtube.com/watch?v=2VB3WN8adyM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/different/different875.mp4.\n",
"MoviePy - Writing audio in different875TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/different/different875.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/different/different875.mp4\n",
"Task completed\n",
"876 ur https://www.youtube.com/watch?v=DtTVnZO0kNI\n",
"folder created\n",
"DtTVnZO0kNI is unavailable\n",
"877 ur https://www.youtube.com/watch?v=DtTVnZO0kNI\n",
"folder created\n",
"DtTVnZO0kNI is unavailable\n",
"878 ur https://www.youtube.com/watch?v=DtTVnZO0kNI\n",
"folder created\n",
"DtTVnZO0kNI is unavailable\n",
"879 ur https://www.youtube.com/watch?v=DtTVnZO0kNI\n",
"folder created\n",
"DtTVnZO0kNI is unavailable\n",
"880 ur https://www.youtube.com/watch?v=DtTVnZO0kNI\n",
"folder created\n",
"DtTVnZO0kNI is unavailable\n",
"881 ur https://www.youtube.com/watch?v=DtTVnZO0kNI\n",
"folder created\n",
"DtTVnZO0kNI is unavailable\n",
"882 ur https://www.youtube.com/watch?v=DtTVnZO0kNI\n",
"folder created\n",
"DtTVnZO0kNI is unavailable\n",
"883 ur https://www.youtube.com/watch?v=bS9icDOS5g4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sick/sick883.mp4.\n",
"MoviePy - Writing audio in sick883TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sick/sick883.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sick/sick883.mp4\n",
"Task completed\n",
"884 ur https://www.youtube.com/watch?v=2lzLDsoVWww\n",
"folder created\n",
"2lzLDsoVWww is unavailable\n",
"885 ur https://www.youtube.com/watch?v=2lzLDsoVWww\n",
"folder created\n",
"2lzLDsoVWww is unavailable\n",
"886 ur https://www.youtube.com/watch?v=2lzLDsoVWww\n",
"folder created\n",
"2lzLDsoVWww is unavailable\n",
"887 ur https://www.youtube.com/watch?v=2lzLDsoVWww\n",
"folder created\n",
"2lzLDsoVWww is unavailable\n",
"888 ur https://www.youtube.com/watch?v=KsvdFnvMNAA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hungry/hungry888.mp4.\n",
"MoviePy - Writing audio in hungry888TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hungry/hungry888.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hungry/hungry888.mp4\n",
"Task completed\n",
"889 ur www.youtube.com/watch?v=okqqixdZmE4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/water/water889.mp4.\n",
"MoviePy - Writing audio in water889TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/water/water889.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/water/water889.mp4\n",
"Task completed\n",
"890 ur https://www.youtube.com/watch?v=OQtf7R6phQQ\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"OQtf7R6phQQ is age restricted, and can't be accessed without logging in.\n",
"891 ur www.youtube.com/watch?v=7wuZuUIg114\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/table/table891.mp4.\n",
"MoviePy - Writing audio in table891TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/table/table891.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/table/table891.mp4\n",
"Task completed\n",
"892 ur https://www.youtube.com/watch?v=x5cwBfSKnZc\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hearing/hearing892.mp4.\n",
"MoviePy - Writing audio in hearing892TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hearing/hearing892.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hearing/hearing892.mp4\n",
"Task completed\n",
"893 ur https://www.youtube.com/watch?v=3DxbKdzo_K8\n",
"folder created\n",
"3DxbKdzo_K8 is a private video\n",
"894 ur https://www.youtube.com/watch?v=J9kZS0VdY_A&t=8s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/go/go894.mp4.\n",
"MoviePy - Writing audio in go894TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/go/go894.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/go/go894.mp4\n",
"Task completed\n",
"895 ur https://www.youtube.com/watch?v=J9kZS0VdY_A&t=8s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sit/sit895.mp4.\n",
"MoviePy - Writing audio in sit895TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sit/sit895.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sit/sit895.mp4\n",
"Task completed\n",
"896 ur https://www.youtube.com/watch?v=J9kZS0VdY_A&t=8s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sit/sit896.mp4.\n",
"MoviePy - Writing audio in sit896TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sit/sit896.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sit/sit896.mp4\n",
"Task completed\n",
"897 ur https://www.youtube.com/watch?v=J9kZS0VdY_A&t=8s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/live/live897.mp4.\n",
"MoviePy - Writing audio in live897TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/live/live897.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/live/live897.mp4\n",
"Task completed\n",
"898 ur https://www.youtube.com/watch?v=J9kZS0VdY_A&t=8s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/walk/walk898.mp4.\n",
"MoviePy - Writing audio in walk898TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/walk/walk898.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/walk/walk898.mp4\n",
"Task completed\n",
"899 ur https://www.youtube.com/watch?v=J9kZS0VdY_A&t=8s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/spring/spring899.mp4.\n",
"MoviePy - Writing audio in spring899TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/spring/spring899.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/spring/spring899.mp4\n",
"Task completed\n",
"900 ur https://www.youtube.com/watch?v=J9kZS0VdY_A&t=8s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/spring/spring900.mp4.\n",
"MoviePy - Writing audio in spring900TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/spring/spring900.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/spring/spring900.mp4\n",
"Task completed\n",
"901 ur https://www.youtube.com/watch?v=J9kZS0VdY_A&t=8s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/lost/lost901.mp4.\n",
"MoviePy - Writing audio in lost901TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/lost/lost901.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/lost/lost901.mp4\n",
"Task completed\n",
"902 ur https://www.youtube.com/watch?v=J9kZS0VdY_A&t=8s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/play/play902.mp4.\n",
"MoviePy - Writing audio in play902TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/play/play902.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/play/play902.mp4\n",
"Task completed\n",
"903 ur https://www.youtube.com/watch?v=J9kZS0VdY_A&t=8s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/big/big903.mp4.\n",
"MoviePy - Writing audio in big903TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/big/big903.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/big/big903.mp4\n",
"Task completed\n",
"904 ur https://www.youtube.com/watch?v=J9kZS0VdY_A&t=8s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/big/big904.mp4.\n",
"MoviePy - Writing audio in big904TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/big/big904.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/big/big904.mp4\n",
"Task completed\n",
"905 ur https://www.youtube.com/watch?v=J9kZS0VdY_A&t=8s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/beautiful/beautiful905.mp4.\n",
"MoviePy - Writing audio in beautiful905TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/beautiful/beautiful905.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/beautiful/beautiful905.mp4\n",
"Task completed\n",
"906 ur https://www.youtube.com/watch?v=J9kZS0VdY_A&t=8s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/beautiful/beautiful906.mp4.\n",
"MoviePy - Writing audio in beautiful906TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/beautiful/beautiful906.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/beautiful/beautiful906.mp4\n",
"Task completed\n",
"907 ur https://www.youtube.com/watch?v=J9kZS0VdY_A&t=8s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/beautiful/beautiful907.mp4.\n",
"MoviePy - Writing audio in beautiful907TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/beautiful/beautiful907.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/beautiful/beautiful907.mp4\n",
"Task completed\n",
"908 ur https://www.youtube.com/watch?v=J9kZS0VdY_A&t=8s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/finish/finish908.mp4.\n",
"MoviePy - Writing audio in finish908TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/finish/finish908.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/finish/finish908.mp4\n",
"Task completed\n",
"909 ur https://www.youtube.com/watch?v=MU3_iURZyqY\n",
"folder created\n",
"MU3_iURZyqY is unavailable\n",
"910 ur https://www.youtube.com/watch?v=MU3_iURZyqY\n",
"folder created\n",
"MU3_iURZyqY is unavailable\n",
"911 ur https://www.youtube.com/watch?v=MU3_iURZyqY\n",
"folder created\n",
"MU3_iURZyqY is unavailable\n",
"912 ur https://www.youtube.com/watch?v=JBIstMmmHxI\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/here/here912.mp4.\n",
"MoviePy - Writing audio in here912TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/here/here912.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/here/here912.mp4\n",
"Task completed\n",
"913 ur www.youtube.com/watch?v=M3sXN-k8axs\n",
"folder created\n",
"M3sXN-k8axs is unavailable\n",
"914 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/black/black914.mp4.\n",
"MoviePy - Writing audio in black914TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/black/black914.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/black/black914.mp4\n",
"Task completed\n",
"915 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/brown/brown915.mp4.\n",
"MoviePy - Writing audio in brown915TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/brown/brown915.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/brown/brown915.mp4\n",
"Task completed\n",
"916 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/green/green916.mp4.\n",
"MoviePy - Writing audio in green916TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/green/green916.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/green/green916.mp4\n",
"Task completed\n",
"917 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/orange/orange917.mp4.\n",
"MoviePy - Writing audio in orange917TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/orange/orange917.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/orange/orange917.mp4\n",
"Task completed\n",
"918 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/pink/pink918.mp4.\n",
"MoviePy - Writing audio in pink918TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/pink/pink918.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/pink/pink918.mp4\n",
"Task completed\n",
"919 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/red/red919.mp4.\n",
"MoviePy - Writing audio in red919TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/red/red919.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/red/red919.mp4\n",
"Task completed\n",
"920 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/white/white920.mp4.\n",
"MoviePy - Writing audio in white920TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/white/white920.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/white/white920.mp4\n",
"Task completed\n",
"921 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yellow/yellow921.mp4.\n",
"MoviePy - Writing audio in yellow921TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yellow/yellow921.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/yellow/yellow921.mp4\n",
"Task completed\n",
"922 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/paper/paper922.mp4.\n",
"MoviePy - Writing audio in paper922TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/paper/paper922.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/paper/paper922.mp4\n",
"Task completed\n",
"923 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bored/bored923.mp4.\n",
"MoviePy - Writing audio in bored923TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bored/bored923.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bored/bored923.mp4\n",
"Task completed\n",
"924 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sick/sick924.mp4.\n",
"MoviePy - Writing audio in sick924TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sick/sick924.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sick/sick924.mp4\n",
"Task completed\n",
"925 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sick/sick925.mp4.\n",
"MoviePy - Writing audio in sick925TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sick/sick925.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sick/sick925.mp4\n",
"Task completed\n",
"926 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/family/family926.mp4.\n",
"MoviePy - Writing audio in family926TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/family/family926.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/family/family926.mp4\n",
"Task completed\n",
"927 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/mother/mother927.mp4.\n",
"MoviePy - Writing audio in mother927TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/mother/mother927.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/mother/mother927.mp4\n",
"Task completed\n",
"928 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/father/father928.mp4.\n",
"MoviePy - Writing audio in father928TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/father/father928.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/father/father928.mp4\n",
"Task completed\n",
"929 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/grandfather/grandfather929.mp4.\n",
"MoviePy - Writing audio in grandfather929TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/grandfather/grandfather929.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/grandfather/grandfather929.mp4\n",
"Task completed\n",
"930 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/cousin/cousin930.mp4.\n",
"MoviePy - Writing audio in cousin930TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/cousin/cousin930.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/cousin/cousin930.mp4\n",
"Task completed\n",
"931 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/brother/brother931.mp4.\n",
"MoviePy - Writing audio in brother931TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/brother/brother931.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/brother/brother931.mp4\n",
"Task completed\n",
"932 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/brother/brother932.mp4.\n",
"MoviePy - Writing audio in brother932TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/brother/brother932.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/brother/brother932.mp4\n",
"Task completed\n",
"933 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sister/sister933.mp4.\n",
"MoviePy - Writing audio in sister933TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sister/sister933.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sister/sister933.mp4\n",
"Task completed\n",
"934 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sister/sister934.mp4.\n",
"MoviePy - Writing audio in sister934TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sister/sister934.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sister/sister934.mp4\n",
"Task completed\n",
"935 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/friend/friend935.mp4.\n",
"MoviePy - Writing audio in friend935TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/friend/friend935.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/friend/friend935.mp4\n",
"Task completed\n",
"936 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nice/nice936.mp4.\n",
"MoviePy - Writing audio in nice936TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nice/nice936.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nice/nice936.mp4\n",
"Task completed\n",
"937 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/read/read937.mp4.\n",
"MoviePy - Writing audio in read937TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/read/read937.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/read/read937.mp4\n",
"Task completed\n",
"938 ur https://www.youtube.com/watch?v=n7MQUHa0vr4&t=1s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/same/same938.mp4.\n",
"MoviePy - Writing audio in same938TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/same/same938.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/same/same938.mp4\n",
"Task completed\n",
"939 ur www.youtube.com/watch?v=-xhd1F9dpYc\n",
"folder created\n",
"-xhd1F9dpYc is a private video\n",
"940 ur https://www.youtube.com/watch?v=-on_5PoBEak\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/yes/yes940.mp4.\n",
"MoviePy - Writing audio in yes940TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/yes/yes940.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/yes/yes940.mp4\n",
"Task completed\n",
"941 ur www.youtube.com/watch?v=KAJPIxkKWbA\n",
"folder created\n",
"KAJPIxkKWbA is a private video\n",
"942 ur https://www.youtube.com/watch?v=qdC7SfVp8iQ\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/tired/tired942.mp4.\n",
"MoviePy - Writing audio in tired942TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/tired/tired942.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/tired/tired942.mp4\n",
"Task completed\n",
"943 ur https://www.youtube.com/watch?v=Nx5yZfVGuX8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/read/read943.mp4.\n",
"MoviePy - Writing audio in read943TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/read/read943.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/read/read943.mp4\n",
"Task completed\n",
"944 ur www.youtube.com/watch?v=QlZnUdm8KAU\n",
"folder created\n",
"QlZnUdm8KAU is unavailable\n",
"945 ur www.youtube.com/watch?v=5nKYTRnMGwA\n",
"folder created\n",
"5nKYTRnMGwA is a private video\n",
"946 ur https://www.youtube.com/watch?v=vEti7bfjCKk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/you/you946.mp4.\n",
"MoviePy - Writing audio in you946TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/you/you946.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/you/you946.mp4\n",
"Task completed\n",
"947 ur https://www.youtube.com/watch?v=vEti7bfjCKk\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/you/you947.mp4.\n",
"MoviePy - Writing audio in you947TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/you/you947.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/you/you947.mp4\n",
"Task completed\n",
"948 ur https://www.youtube.com/watch?v=vFEQ8aluRDY\n",
"folder created\n",
"vFEQ8aluRDY is a private video\n",
"949 ur https://www.youtube.com/watch?v=jR4eoFIkTHI\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/brown/brown949.mp4.\n",
"MoviePy - Writing audio in brown949TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/brown/brown949.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/brown/brown949.mp4\n",
"Task completed\n",
"950 ur https://www.youtube.com/watch?v=LLWMtJqbucE\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"LLWMtJqbucE is a private video\n",
"951 ur https://www.youtube.com/watch?v=Y4Ah4DAuQS0\n",
"folder created\n",
"Y4Ah4DAuQS0 is unavailable\n",
"952 ur https://www.youtube.com/watch?v=Y4Ah4DAuQS0\n",
"folder created\n",
"Y4Ah4DAuQS0 is unavailable\n",
"953 ur https://www.youtube.com/watch?v=Y4Ah4DAuQS0\n",
"folder created\n",
"Y4Ah4DAuQS0 is unavailable\n",
"954 ur https://www.youtube.com/watch?v=Y4Ah4DAuQS0\n",
"folder created\n",
"Y4Ah4DAuQS0 is unavailable\n",
"955 ur https://www.youtube.com/watch?v=Y4Ah4DAuQS0\n",
"folder created\n",
"Y4Ah4DAuQS0 is unavailable\n",
"956 ur https://www.youtube.com/watch?v=Y4Ah4DAuQS0\n",
"folder created\n",
"Y4Ah4DAuQS0 is unavailable\n",
"957 ur https://www.youtube.com/watch?v=Y4Ah4DAuQS0\n",
"folder created\n",
"Y4Ah4DAuQS0 is unavailable\n",
"958 ur https://www.youtube.com/watch?v=Y4Ah4DAuQS0\n",
"folder created\n",
"Y4Ah4DAuQS0 is unavailable\n",
"959 ur https://www.youtube.com/watch?v=Y4Ah4DAuQS0\n",
"folder created\n",
"Y4Ah4DAuQS0 is unavailable\n",
"960 ur https://www.youtube.com/watch?v=Y4Ah4DAuQS0\n",
"folder created\n",
"Y4Ah4DAuQS0 is unavailable\n",
"961 ur https://www.youtube.com/watch?v=Y4Ah4DAuQS0\n",
"folder created\n",
"Y4Ah4DAuQS0 is unavailable\n",
"962 ur https://www.youtube.com/watch?v=Y4Ah4DAuQS0\n",
"folder created\n",
"Y4Ah4DAuQS0 is unavailable\n",
"963 ur https://www.youtube.com/watch?v=Y4Ah4DAuQS0\n",
"folder created\n",
"Y4Ah4DAuQS0 is unavailable\n",
"964 ur https://www.youtube.com/watch?v=Y4Ah4DAuQS0\n",
"folder created\n",
"Y4Ah4DAuQS0 is unavailable\n",
"965 ur www.youtube.com/watch?v=JV4BqtKxwOY\n",
"folder created\n",
"JV4BqtKxwOY is a private video\n",
"966 ur https://www.youtube.com/watch?v=jp3sQrnQYzs\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/live/live966.mp4.\n",
"MoviePy - Writing audio in live966TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/live/live966.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/live/live966.mp4\n",
"Task completed\n",
"967 ur https://www.youtube.com/watch?v=x3GJ5mFOpNA\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"x3GJ5mFOpNA is unavailable\n",
"968 ur www.youtube.com/watch?v=Nir1m7wW0MA\n",
"folder created\n",
"Nir1m7wW0MA is a private video\n",
"969 ur https://www.youtube.com/watch?v=IlIE1OP3gP0&t=99s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/forget/forget969.mp4.\n",
"MoviePy - Writing audio in forget969TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/forget/forget969.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/forget/forget969.mp4\n",
"Task completed\n",
"970 ur https://www.youtube.com/watch?v=IlIE1OP3gP0&t=99s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/forget/forget970.mp4.\n",
"MoviePy - Writing audio in forget970TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/forget/forget970.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/forget/forget970.mp4\n",
"Task completed\n",
"971 ur https://www.youtube.com/watch?v=W4W1TdB7zkU\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/france/france971.mp4.\n",
"MoviePy - Writing audio in france971TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/france/france971.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/france/france971.mp4\n",
"Task completed\n",
"972 ur https://www.youtube.com/watch?v=W4W1TdB7zkU\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/english/english972.mp4.\n",
"MoviePy - Writing audio in english972TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/english/english972.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/english/english972.mp4\n",
"Task completed\n",
"973 ur https://www.youtube.com/watch?v=rIlQQTN2b58\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sad/sad973.mp4.\n",
"MoviePy - Writing audio in sad973TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sad/sad973.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sad/sad973.mp4\n",
"Task completed\n",
"974 ur https://www.youtube.com/watch?v=rIlQQTN2b58\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bad/bad974.mp4.\n",
"MoviePy - Writing audio in bad974TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bad/bad974.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bad/bad974.mp4\n",
"Task completed\n",
"975 ur https://www.youtube.com/watch?v=rIlQQTN2b58\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/good/good975.mp4.\n",
"MoviePy - Writing audio in good975TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/good/good975.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/good/good975.mp4\n",
"Task completed\n",
"976 ur https://www.youtube.com/watch?v=rIlQQTN2b58\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/beautiful/beautiful976.mp4.\n",
"MoviePy - Writing audio in beautiful976TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/beautiful/beautiful976.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/beautiful/beautiful976.mp4\n",
"Task completed\n",
"977 ur https://www.youtube.com/watch?v=rIlQQTN2b58\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/happy/happy977.mp4.\n",
"MoviePy - Writing audio in happy977TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/happy/happy977.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/happy/happy977.mp4\n",
"Task completed\n",
"978 ur https://www.youtube.com/watch?v=rIlQQTN2b58\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bird/bird978.mp4.\n",
"MoviePy - Writing audio in bird978TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bird/bird978.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bird/bird978.mp4\n",
"Task completed\n",
"979 ur https://www.youtube.com/watch?v=rIlQQTN2b58\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/fish/fish979.mp4.\n",
"MoviePy - Writing audio in fish979TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/fish/fish979.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/fish/fish979.mp4\n",
"Task completed\n",
"980 ur www.youtube.com/watch?v=_NX-DBaE1Hc\n",
"folder created\n",
"_NX-DBaE1Hc is a private video\n",
"981 ur https://www.youtube.com/watch?v=BJadr-8uX5U\n",
"folder created\n",
"BJadr-8uX5U is age restricted, and can't be accessed without logging in.\n",
"982 ur https://www.youtube.com/watch?v=BJadr-8uX5U\n",
"folder created\n",
"BJadr-8uX5U is age restricted, and can't be accessed without logging in.\n",
"983 ur https://www.youtube.com/watch?v=d71-bWnBbSI\n",
"folder created\n",
"d71-bWnBbSI is unavailable\n",
"984 ur https://www.youtube.com/watch?v=7yKNI0jlXMs\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/black/black984.mp4.\n",
"MoviePy - Writing audio in black984TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/black/black984.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/black/black984.mp4\n",
"Task completed\n",
"985 ur www.youtube.com/watch?v=lVo6MByRMHY\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"lVo6MByRMHY is unavailable\n",
"986 ur https://www.youtube.com/watch?v=_bL1hlBmaLI\n",
"folder created\n",
"_bL1hlBmaLI is age restricted, and can't be accessed without logging in.\n",
"987 ur https://www.youtube.com/watch?v=_bL1hlBmaLI\n",
"folder created\n",
"_bL1hlBmaLI is age restricted, and can't be accessed without logging in.\n",
"988 ur https://www.youtube.com/watch?v=_bL1hlBmaLI\n",
"folder created\n",
"_bL1hlBmaLI is age restricted, and can't be accessed without logging in.\n",
"989 ur https://www.youtube.com/watch?v=_bL1hlBmaLI\n",
"folder created\n",
"_bL1hlBmaLI is age restricted, and can't be accessed without logging in.\n",
"990 ur https://www.youtube.com/watch?v=_bL1hlBmaLI\n",
"folder created\n",
"_bL1hlBmaLI is age restricted, and can't be accessed without logging in.\n",
"991 ur www.youtube.com/watch?v=lJq6cwXjyQc\n",
"folder created\n",
"lJq6cwXjyQc is a private video\n",
"992 ur https://www.youtube.com/watch?v=q3AuBy_qiAA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/same/same992.mp4.\n",
"MoviePy - Writing audio in same992TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/same/same992.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/same/same992.mp4\n",
"Task completed\n",
"993 ur https://www.youtube.com/watch?v=hKogDJd0yc4\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/red/red993.mp4.\n",
"MoviePy - Writing audio in red993TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/red/red993.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/red/red993.mp4\n",
"Task completed\n",
"994 ur https://www.youtube.com/watch?v=hKogDJd0yc4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/green/green994.mp4.\n",
"MoviePy - Writing audio in green994TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/green/green994.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/green/green994.mp4\n",
"Task completed\n",
"995 ur https://www.youtube.com/watch?v=hKogDJd0yc4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/brown/brown995.mp4.\n",
"MoviePy - Writing audio in brown995TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/brown/brown995.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/brown/brown995.mp4\n",
"Task completed\n",
"996 ur https://www.youtube.com/watch?v=hKogDJd0yc4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/white/white996.mp4.\n",
"MoviePy - Writing audio in white996TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/white/white996.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/white/white996.mp4\n",
"Task completed\n",
"997 ur https://www.youtube.com/watch?v=hKogDJd0yc4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/pink/pink997.mp4.\n",
"MoviePy - Writing audio in pink997TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/pink/pink997.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/pink/pink997.mp4\n",
"Task completed\n",
"998 ur https://www.youtube.com/watch?v=hKogDJd0yc4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/orange/orange998.mp4.\n",
"MoviePy - Writing audio in orange998TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/orange/orange998.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/orange/orange998.mp4\n",
"Task completed\n",
"999 ur https://www.youtube.com/watch?v=hKogDJd0yc4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/orange/orange999.mp4.\n",
"MoviePy - Writing audio in orange999TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/orange/orange999.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/orange/orange999.mp4\n",
"Task completed\n",
"1000 ur https://www.youtube.com/watch?v=hKogDJd0yc4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/beautiful/beautiful1000.mp4.\n",
"MoviePy - Writing audio in beautiful1000TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/beautiful/beautiful1000.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/beautiful/beautiful1000.mp4\n",
"Task completed\n",
"1001 ur https://www.youtube.com/watch?v=hKogDJd0yc4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/beautiful/beautiful1001.mp4.\n",
"MoviePy - Writing audio in beautiful1001TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/beautiful/beautiful1001.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/beautiful/beautiful1001.mp4\n",
"Task completed\n",
"1002 ur https://www.youtube.com/watch?v=hKogDJd0yc4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/good/good1002.mp4.\n",
"MoviePy - Writing audio in good1002TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/good/good1002.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/good/good1002.mp4\n",
"Task completed\n",
"1003 ur https://www.youtube.com/watch?v=hKogDJd0yc4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/good/good1003.mp4.\n",
"MoviePy - Writing audio in good1003TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/good/good1003.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/good/good1003.mp4\n",
"Task completed\n",
"1004 ur https://www.youtube.com/watch?v=hKogDJd0yc4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bad/bad1004.mp4.\n",
"MoviePy - Writing audio in bad1004TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bad/bad1004.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bad/bad1004.mp4\n",
"Task completed\n",
"1005 ur https://www.youtube.com/watch?v=hKogDJd0yc4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bad/bad1005.mp4.\n",
"MoviePy - Writing audio in bad1005TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bad/bad1005.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bad/bad1005.mp4\n",
"Task completed\n",
"1006 ur https://www.youtube.com/watch?v=hKogDJd0yc4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/right/right1006.mp4.\n",
"MoviePy - Writing audio in right1006TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/right/right1006.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/right/right1006.mp4\n",
"Task completed\n",
"1007 ur https://www.youtube.com/watch?v=hKogDJd0yc4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/right/right1007.mp4.\n",
"MoviePy - Writing audio in right1007TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/right/right1007.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/right/right1007.mp4\n",
"Task completed\n",
"1008 ur https://www.youtube.com/watch?v=821mepSrKik\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/fine/fine1008.mp4.\n",
"MoviePy - Writing audio in fine1008TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/fine/fine1008.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/fine/fine1008.mp4\n",
"Task completed\n",
"1009 ur www.youtube.com/watch?v=BOKcZa6mugU\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/book/book1009.mp4.\n",
"MoviePy - Writing audio in book1009TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/book/book1009.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/book/book1009.mp4\n",
"Task completed\n",
"1010 ur www.youtube.com/watch?v=1960eVTWUJw\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"1960eVTWUJw is a private video\n",
"1011 ur https://www.youtube.com/watch?v=uwIh6Tv6dzA\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/should/should1011.mp4.\n",
"MoviePy - Writing audio in should1011TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/should/should1011.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/should/should1011.mp4\n",
"Task completed\n",
"1012 ur https://www.youtube.com/watch?v=SGVlUGumJYU\n",
"folder created\n",
"SGVlUGumJYU is unavailable\n",
"1013 ur https://www.youtube.com/watch?v=SGVlUGumJYU\n",
"folder created\n",
"SGVlUGumJYU is unavailable\n",
"1014 ur https://www.youtube.com/watch?v=SGVlUGumJYU\n",
"folder created\n",
"SGVlUGumJYU is unavailable\n",
"1015 ur https://www.youtube.com/watch?v=SGVlUGumJYU\n",
"folder created\n",
"SGVlUGumJYU is unavailable\n",
"1016 ur https://www.youtube.com/watch?v=SGVlUGumJYU\n",
"folder created\n",
"SGVlUGumJYU is unavailable\n",
"1017 ur www.youtube.com/watch?v=KGcYDLCx3bE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/deaf/deaf1017.mp4.\n",
"MoviePy - Writing audio in deaf1017TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/deaf/deaf1017.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/deaf/deaf1017.mp4\n",
"Task completed\n",
"1018 ur https://www.youtube.com/watch?v=fVCOfoP2KBE\n",
"folder created\n",
"fVCOfoP2KBE is unavailable\n",
"1019 ur https://www.youtube.com/watch?v=fVCOfoP2KBE\n",
"folder created\n",
"fVCOfoP2KBE is unavailable\n",
"1020 ur https://www.youtube.com/watch?v=fVCOfoP2KBE\n",
"folder created\n",
"fVCOfoP2KBE is unavailable\n",
"1021 ur https://www.youtube.com/watch?v=GmxS5HkNc3o\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/water/water1021.mp4.\n",
"MoviePy - Writing audio in water1021TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/water/water1021.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/water/water1021.mp4\n",
"Task completed\n",
"1022 ur https://www.youtube.com/watch?v=GmxS5HkNc3o\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bathroom/bathroom1022.mp4.\n",
"MoviePy - Writing audio in bathroom1022TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bathroom/bathroom1022.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bathroom/bathroom1022.mp4\n",
"Task completed\n",
"1023 ur https://www.youtube.com/watch?v=GmxS5HkNc3o\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/like/like1023.mp4.\n",
"MoviePy - Writing audio in like1023TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/like/like1023.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/like/like1023.mp4\n",
"Task completed\n",
"1024 ur https://www.youtube.com/watch?v=GmxS5HkNc3o\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/go/go1024.mp4.\n",
"MoviePy - Writing audio in go1024TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/go/go1024.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/go/go1024.mp4\n",
"Task completed\n",
"1025 ur https://www.youtube.com/watch?v=GmxS5HkNc3o\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/go/go1025.mp4.\n",
"MoviePy - Writing audio in go1025TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/go/go1025.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/go/go1025.mp4\n",
"Task completed\n",
"1026 ur https://www.youtube.com/watch?v=GmxS5HkNc3o\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/go/go1026.mp4.\n",
"MoviePy - Writing audio in go1026TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/go/go1026.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/go/go1026.mp4\n",
"Task completed\n",
"1027 ur https://www.youtube.com/watch?v=GmxS5HkNc3o\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/finish/finish1027.mp4.\n",
"MoviePy - Writing audio in finish1027TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/finish/finish1027.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/finish/finish1027.mp4\n",
"Task completed\n",
"1028 ur https://www.youtube.com/watch?v=GmxS5HkNc3o\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/eat/eat1028.mp4.\n",
"MoviePy - Writing audio in eat1028TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/eat/eat1028.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/eat/eat1028.mp4\n",
"Task completed\n",
"1029 ur https://www.youtube.com/watch?v=GmxS5HkNc3o\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/help/help1029.mp4.\n",
"MoviePy - Writing audio in help1029TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/help/help1029.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/help/help1029.mp4\n",
"Task completed\n",
"1030 ur https://www.youtube.com/watch?v=GmxS5HkNc3o\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/book/book1030.mp4.\n",
"MoviePy - Writing audio in book1030TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/book/book1030.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/book/book1030.mp4\n",
"Task completed\n",
"1031 ur www.youtube.com/watch?v=tzER8F2xbB0\n",
"folder created\n",
"tzER8F2xbB0 is a private video\n",
"1032 ur https://www.youtube.com/watch?v=Y3MhO89mFdE\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/red/red1032.mp4.\n",
"MoviePy - Writing audio in red1032TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/red/red1032.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/red/red1032.mp4\n",
"Task completed\n",
"1033 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nothing/nothing1033.mp4.\n",
"MoviePy - Writing audio in nothing1033TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nothing/nothing1033.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nothing/nothing1033.mp4\n",
"Task completed\n",
"1034 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nothing/nothing1034.mp4.\n",
"MoviePy - Writing audio in nothing1034TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nothing/nothing1034.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nothing/nothing1034.mp4\n",
"Task completed\n",
"1035 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bad/bad1035.mp4.\n",
"MoviePy - Writing audio in bad1035TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bad/bad1035.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bad/bad1035.mp4\n",
"Task completed\n",
"1036 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bad/bad1036.mp4.\n",
"MoviePy - Writing audio in bad1036TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bad/bad1036.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bad/bad1036.mp4\n",
"Task completed\n",
"1037 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/good/good1037.mp4.\n",
"MoviePy - Writing audio in good1037TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/good/good1037.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/good/good1037.mp4\n",
"Task completed\n",
"1038 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/good/good1038.mp4.\n",
"MoviePy - Writing audio in good1038TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/good/good1038.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/good/good1038.mp4\n",
"Task completed\n",
"1039 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/good/good1039.mp4.\n",
"MoviePy - Writing audio in good1039TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/good/good1039.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/good/good1039.mp4\n",
"Task completed\n",
"1040 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/good/good1040.mp4.\n",
"MoviePy - Writing audio in good1040TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/good/good1040.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/good/good1040.mp4\n",
"Task completed\n",
"1041 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/good/good1041.mp4.\n",
"MoviePy - Writing audio in good1041TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/good/good1041.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/good/good1041.mp4\n",
"Task completed\n",
"1042 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/big/big1042.mp4.\n",
"MoviePy - Writing audio in big1042TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/big/big1042.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/big/big1042.mp4\n",
"Task completed\n",
"1043 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/big/big1043.mp4.\n",
"MoviePy - Writing audio in big1043TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/big/big1043.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/big/big1043.mp4\n",
"Task completed\n",
"1044 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/big/big1044.mp4.\n",
"MoviePy - Writing audio in big1044TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/big/big1044.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/big/big1044.mp4\n",
"Task completed\n",
"1045 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/big/big1045.mp4.\n",
"MoviePy - Writing audio in big1045TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/big/big1045.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/big/big1045.mp4\n",
"Task completed\n",
"1046 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/big/big1046.mp4.\n",
"MoviePy - Writing audio in big1046TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/big/big1046.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/big/big1046.mp4\n",
"Task completed\n",
"1047 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/black/black1047.mp4.\n",
"MoviePy - Writing audio in black1047TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/black/black1047.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/black/black1047.mp4\n",
"Task completed\n",
"1048 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/black/black1048.mp4.\n",
"MoviePy - Writing audio in black1048TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/black/black1048.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/black/black1048.mp4\n",
"Task completed\n",
"1049 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/white/white1049.mp4.\n",
"MoviePy - Writing audio in white1049TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/white/white1049.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/white/white1049.mp4\n",
"Task completed\n",
"1050 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/white/white1050.mp4.\n",
"MoviePy - Writing audio in white1050TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/white/white1050.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/white/white1050.mp4\n",
"Task completed\n",
"1051 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/white/white1051.mp4.\n",
"MoviePy - Writing audio in white1051TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/white/white1051.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/white/white1051.mp4\n",
"Task completed\n",
"1052 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/white/white1052.mp4.\n",
"MoviePy - Writing audio in white1052TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/white/white1052.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/white/white1052.mp4\n",
"Task completed\n",
"1053 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/boy/boy1053.mp4.\n",
"MoviePy - Writing audio in boy1053TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/boy/boy1053.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/boy/boy1053.mp4\n",
"Task completed\n",
"1054 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/boy/boy1054.mp4.\n",
"MoviePy - Writing audio in boy1054TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/boy/boy1054.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/boy/boy1054.mp4\n",
"Task completed\n",
"1055 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/girl/girl1055.mp4.\n",
"MoviePy - Writing audio in girl1055TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/girl/girl1055.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/girl/girl1055.mp4\n",
"Task completed\n",
"1056 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/girl/girl1056.mp4.\n",
"MoviePy - Writing audio in girl1056TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/girl/girl1056.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/girl/girl1056.mp4\n",
"Task completed\n",
"1057 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/girl/girl1057.mp4.\n",
"MoviePy - Writing audio in girl1057TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/girl/girl1057.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/girl/girl1057.mp4\n",
"Task completed\n",
"1058 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/girl/girl1058.mp4.\n",
"MoviePy - Writing audio in girl1058TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/girl/girl1058.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/girl/girl1058.mp4\n",
"Task completed\n",
"1059 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nice/nice1059.mp4.\n",
"MoviePy - Writing audio in nice1059TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nice/nice1059.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nice/nice1059.mp4\n",
"Task completed\n",
"1060 ur https://www.youtube.com/watch?v=FRQbKDZeRzM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nice/nice1060.mp4.\n",
"MoviePy - Writing audio in nice1060TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nice/nice1060.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nice/nice1060.mp4\n",
"Task completed\n",
"1061 ur https://www.youtube.com/watch?v=qE0EsE4dTj8\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/beautiful/beautiful1061.mp4.\n",
"MoviePy - Writing audio in beautiful1061TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/beautiful/beautiful1061.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/beautiful/beautiful1061.mp4\n",
"Task completed\n",
"1062 ur www.youtube.com/watch?v=DGWErPoCHqw\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sorry/sorry1062.mp4.\n",
"MoviePy - Writing audio in sorry1062TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sorry/sorry1062.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/sorry/sorry1062.mp4\n",
"Task completed\n",
"1063 ur https://www.youtube.com/watch?v=He0k3ddd67A\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/paper/paper1063.mp4.\n",
"MoviePy - Writing audio in paper1063TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/paper/paper1063.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/paper/paper1063.mp4\n",
"Task completed\n",
"1064 ur https://www.youtube.com/watch?v=He0k3ddd67A\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/fish/fish1064.mp4.\n",
"MoviePy - Writing audio in fish1064TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/fish/fish1064.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/fish/fish1064.mp4\n",
"Task completed\n",
"1065 ur https://www.youtube.com/watch?v=He0k3ddd67A\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/chicken/chicken1065.mp4.\n",
"MoviePy - Writing audio in chicken1065TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/chicken/chicken1065.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/chicken/chicken1065.mp4\n",
"Task completed\n",
"1066 ur https://www.youtube.com/watch?v=He0k3ddd67A\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/milk/milk1066.mp4.\n",
"MoviePy - Writing audio in milk1066TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/milk/milk1066.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/milk/milk1066.mp4\n",
"Task completed\n",
"1067 ur https://www.youtube.com/watch?v=He0k3ddd67A\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/orange/orange1067.mp4.\n",
"MoviePy - Writing audio in orange1067TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/orange/orange1067.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/orange/orange1067.mp4\n",
"Task completed\n",
"1068 ur https://www.youtube.com/watch?v=HTeeRREigD4\n",
"folder created\n",
"HTeeRREigD4 is unavailable\n",
"1069 ur https://www.youtube.com/watch?v=nkkTxKLhwCQ\n",
"folder created\n",
"nkkTxKLhwCQ is unavailable\n",
"1070 ur www.youtube.com/watch?v=L6hHRIQzWBo\n",
"folder created\n",
"L6hHRIQzWBo is a private video\n",
"1071 ur https://www.youtube.com/watch?v=dELt8wh_5nA&t=91s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/table/table1071.mp4.\n",
"MoviePy - Writing audio in table1071TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/table/table1071.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/table/table1071.mp4\n",
"Task completed\n",
"1072 ur https://www.youtube.com/watch?v=dELt8wh_5nA&t=91s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/spring/spring1072.mp4.\n",
"MoviePy - Writing audio in spring1072TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/spring/spring1072.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/spring/spring1072.mp4\n",
"Task completed\n",
"1073 ur https://www.youtube.com/watch?v=dELt8wh_5nA&t=91s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nice/nice1073.mp4.\n",
"MoviePy - Writing audio in nice1073TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nice/nice1073.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nice/nice1073.mp4\n",
"Task completed\n",
"1074 ur https://www.youtube.com/watch?v=dELt8wh_5nA&t=91s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nothing/nothing1074.mp4.\n",
"MoviePy - Writing audio in nothing1074TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nothing/nothing1074.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nothing/nothing1074.mp4\n",
"Task completed\n",
"1075 ur https://www.youtube.com/watch?v=dELt8wh_5nA&t=91s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/lost/lost1075.mp4.\n",
"MoviePy - Writing audio in lost1075TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/lost/lost1075.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/lost/lost1075.mp4\n",
"Task completed\n",
"1076 ur https://www.youtube.com/watch?v=Qvn5RGyb0po\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/deaf/deaf1076.mp4.\n",
"MoviePy - Writing audio in deaf1076TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/deaf/deaf1076.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/deaf/deaf1076.mp4\n",
"Task completed\n",
"1077 ur https://www.youtube.com/watch?v=KoQlRtSTAew\n",
"folder created\n",
"KoQlRtSTAew is unavailable\n",
"1078 ur https://www.youtube.com/watch?v=JD_CiyDFnkM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/milk/milk1078.mp4.\n",
"MoviePy - Writing audio in milk1078TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/milk/milk1078.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/milk/milk1078.mp4\n",
"Task completed\n",
"1079 ur https://www.youtube.com/watch?v=QJDnJvFrjSU\n",
"folder created\n",
"QJDnJvFrjSU is a private video\n",
"1080 ur www.youtube.com/watch?v=LrAEThlpWrI\n",
"folder created\n",
"LrAEThlpWrI is a private video\n",
"1081 ur https://www.youtube.com/watch?v=2ofPs_uTel4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/black/black1081.mp4.\n",
"MoviePy - Writing audio in black1081TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/black/black1081.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/black/black1081.mp4\n",
"Task completed\n",
"1082 ur https://www.youtube.com/watch?v=2ofPs_uTel4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/doctor/doctor1082.mp4.\n",
"MoviePy - Writing audio in doctor1082TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/doctor/doctor1082.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/doctor/doctor1082.mp4\n",
"Task completed\n",
"1083 ur https://www.youtube.com/watch?v=2ofPs_uTel4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hurt/hurt1083.mp4.\n",
"MoviePy - Writing audio in hurt1083TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hurt/hurt1083.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hurt/hurt1083.mp4\n",
"Task completed\n",
"1084 ur https://www.youtube.com/watch?v=2ofPs_uTel4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/spring/spring1084.mp4.\n",
"MoviePy - Writing audio in spring1084TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/spring/spring1084.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/spring/spring1084.mp4\n",
"Task completed\n",
"1085 ur https://www.youtube.com/watch?v=CYLvY25yI9c\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nice/nice1085.mp4.\n",
"MoviePy - Writing audio in nice1085TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nice/nice1085.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nice/nice1085.mp4\n",
"Task completed\n",
"1086 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/doctor/doctor1086.mp4.\n",
"MoviePy - Writing audio in doctor1086TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/doctor/doctor1086.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/doctor/doctor1086.mp4\n",
"Task completed\n",
"1087 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nurse/nurse1087.mp4.\n",
"MoviePy - Writing audio in nurse1087TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nurse/nurse1087.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nurse/nurse1087.mp4\n",
"Task completed\n",
"1088 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nurse/nurse1088.mp4.\n",
"MoviePy - Writing audio in nurse1088TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nurse/nurse1088.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nurse/nurse1088.mp4\n",
"Task completed\n",
"1089 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/teacher/teacher1089.mp4.\n",
"MoviePy - Writing audio in teacher1089TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/teacher/teacher1089.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/teacher/teacher1089.mp4\n",
"Task completed\n",
"1090 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/english/english1090.mp4.\n",
"MoviePy - Writing audio in english1090TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/english/english1090.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/english/english1090.mp4\n",
"Task completed\n",
"1091 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/draw/draw1091.mp4.\n",
"MoviePy - Writing audio in draw1091TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/draw/draw1091.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/draw/draw1091.mp4\n",
"Task completed\n",
"1092 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/boy/boy1092.mp4.\n",
"MoviePy - Writing audio in boy1092TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/boy/boy1092.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/boy/boy1092.mp4\n",
"Task completed\n",
"1093 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/girl/girl1093.mp4.\n",
"MoviePy - Writing audio in girl1093TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/girl/girl1093.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/girl/girl1093.mp4\n",
"Task completed\n",
"1094 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/man/man1094.mp4.\n",
"MoviePy - Writing audio in man1094TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/man/man1094.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/man/man1094.mp4\n",
"Task completed\n",
"1095 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/man/man1095.mp4.\n",
"MoviePy - Writing audio in man1095TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/man/man1095.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/man/man1095.mp4\n",
"Task completed\n",
"1096 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/woman/woman1096.mp4.\n",
"MoviePy - Writing audio in woman1096TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/woman/woman1096.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/woman/woman1096.mp4\n",
"Task completed\n",
"1097 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bathroom/bathroom1097.mp4.\n",
"MoviePy - Writing audio in bathroom1097TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bathroom/bathroom1097.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bathroom/bathroom1097.mp4\n",
"Task completed\n",
"1098 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bathroom/bathroom1098.mp4.\n",
"MoviePy - Writing audio in bathroom1098TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bathroom/bathroom1098.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bathroom/bathroom1098.mp4\n",
"Task completed\n",
"1099 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bathroom/bathroom1099.mp4.\n",
"MoviePy - Writing audio in bathroom1099TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bathroom/bathroom1099.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bathroom/bathroom1099.mp4\n",
"Task completed\n",
"1100 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/night/night1100.mp4.\n",
"MoviePy - Writing audio in night1100TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/night/night1100.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/night/night1100.mp4\n",
"Task completed\n",
"1101 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/day/day1101.mp4.\n",
"MoviePy - Writing audio in day1101TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/day/day1101.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/day/day1101.mp4\n",
"Task completed\n",
"1102 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/day/day1102.mp4.\n",
"MoviePy - Writing audio in day1102TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/day/day1102.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/day/day1102.mp4\n",
"Task completed\n",
"1103 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/forget/forget1103.mp4.\n",
"MoviePy - Writing audio in forget1103TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/forget/forget1103.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/forget/forget1103.mp4\n",
"Task completed\n",
"1104 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/here/here1104.mp4.\n",
"MoviePy - Writing audio in here1104TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/here/here1104.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/here/here1104.mp4\n",
"Task completed\n",
"1105 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/eat/eat1105.mp4.\n",
"MoviePy - Writing audio in eat1105TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/eat/eat1105.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/eat/eat1105.mp4\n",
"Task completed\n",
"1106 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/eat/eat1106.mp4.\n",
"MoviePy - Writing audio in eat1106TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/eat/eat1106.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/eat/eat1106.mp4\n",
"Task completed\n",
"1107 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/drink/drink1107.mp4.\n",
"MoviePy - Writing audio in drink1107TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/drink/drink1107.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/drink/drink1107.mp4\n",
"Task completed\n",
"1108 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hungry/hungry1108.mp4.\n",
"MoviePy - Writing audio in hungry1108TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hungry/hungry1108.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hungry/hungry1108.mp4\n",
"Task completed\n",
"1109 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bird/bird1109.mp4.\n",
"MoviePy - Writing audio in bird1109TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bird/bird1109.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bird/bird1109.mp4\n",
"Task completed\n",
"1110 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/fish/fish1110.mp4.\n",
"MoviePy - Writing audio in fish1110TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/fish/fish1110.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/fish/fish1110.mp4\n",
"Task completed\n",
"1111 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sit/sit1111.mp4.\n",
"MoviePy - Writing audio in sit1111TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sit/sit1111.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sit/sit1111.mp4\n",
"Task completed\n",
"1112 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sit/sit1112.mp4.\n",
"MoviePy - Writing audio in sit1112TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sit/sit1112.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sit/sit1112.mp4\n",
"Task completed\n",
"1113 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/table/table1113.mp4.\n",
"MoviePy - Writing audio in table1113TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/table/table1113.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/table/table1113.mp4\n",
"Task completed\n",
"1114 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/book/book1114.mp4.\n",
"MoviePy - Writing audio in book1114TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/book/book1114.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/book/book1114.mp4\n",
"Task completed\n",
"1115 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/computer/computer1115.mp4.\n",
"MoviePy - Writing audio in computer1115TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/computer/computer1115.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/computer/computer1115.mp4\n",
"Task completed\n",
"1116 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/computer/computer1116.mp4.\n",
"MoviePy - Writing audio in computer1116TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/computer/computer1116.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/computer/computer1116.mp4\n",
"Task completed\n",
"1117 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/pencil/pencil1117.mp4.\n",
"MoviePy - Writing audio in pencil1117TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/pencil/pencil1117.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/pencil/pencil1117.mp4\n",
"Task completed\n",
"1118 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/live/live1118.mp4.\n",
"MoviePy - Writing audio in live1118TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/live/live1118.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/live/live1118.mp4\n",
"Task completed\n",
"1119 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/need/need1119.mp4.\n",
"MoviePy - Writing audio in need1119TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/need/need1119.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/need/need1119.mp4\n",
"Task completed\n",
"1120 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/write/write1120.mp4.\n",
"MoviePy - Writing audio in write1120TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/write/write1120.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/write/write1120.mp4\n",
"Task completed\n",
"1121 ur https://www.youtube.com/watch?v=KLD5f35qEDI&t=1043s\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/nothing/nothing1121.mp4.\n",
"MoviePy - Writing audio in nothing1121TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/nothing/nothing1121.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/nothing/nothing1121.mp4\n",
"Task completed\n",
"1122 ur https://www.youtube.com/watch?v=M80w0mda7zM\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/play/play1122.mp4.\n",
"MoviePy - Writing audio in play1122TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/play/play1122.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/play/play1122.mp4\n",
"Task completed\n",
"1123 ur https://www.youtube.com/watch?v=-jfRyJH7OMI\n",
"folder created\n",
"-jfRyJH7OMI is unavailable\n",
"1124 ur https://www.youtube.com/watch?v=9bosgmeAAuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/learn/learn1124.mp4.\n",
"MoviePy - Writing audio in learn1124TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/learn/learn1124.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/learn/learn1124.mp4\n",
"Task completed\n",
"1125 ur https://www.youtube.com/watch?v=9bosgmeAAuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/learn/learn1125.mp4.\n",
"MoviePy - Writing audio in learn1125TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/learn/learn1125.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/learn/learn1125.mp4\n",
"Task completed\n",
"1126 ur https://www.youtube.com/watch?v=9bosgmeAAuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/paper/paper1126.mp4.\n",
"MoviePy - Writing audio in paper1126TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/paper/paper1126.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/paper/paper1126.mp4\n",
"Task completed\n",
"1127 ur https://www.youtube.com/watch?v=9bosgmeAAuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/book/book1127.mp4.\n",
"MoviePy - Writing audio in book1127TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/book/book1127.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/book/book1127.mp4\n",
"Task completed\n",
"1128 ur https://www.youtube.com/watch?v=9bosgmeAAuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/book/book1128.mp4.\n",
"MoviePy - Writing audio in book1128TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/book/book1128.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/book/book1128.mp4\n",
"Task completed\n",
"1129 ur https://www.youtube.com/watch?v=9bosgmeAAuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/understand/understand1129.mp4.\n",
"MoviePy - Writing audio in understand1129TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/understand/understand1129.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/understand/understand1129.mp4\n",
"Task completed\n",
"1130 ur https://www.youtube.com/watch?v=9bosgmeAAuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/understand/understand1130.mp4.\n",
"MoviePy - Writing audio in understand1130TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/understand/understand1130.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/understand/understand1130.mp4\n",
"Task completed\n",
"1131 ur https://www.youtube.com/watch?v=9bosgmeAAuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/name/name1131.mp4.\n",
"MoviePy - Writing audio in name1131TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/name/name1131.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/name/name1131.mp4\n",
"Task completed\n",
"1132 ur https://www.youtube.com/watch?v=9bosgmeAAuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/name/name1132.mp4.\n",
"MoviePy - Writing audio in name1132TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/name/name1132.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/name/name1132.mp4\n",
"Task completed\n",
"1133 ur https://www.youtube.com/watch?v=9bosgmeAAuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/again/again1133.mp4.\n",
"MoviePy - Writing audio in again1133TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/again/again1133.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/again/again1133.mp4\n",
"Task completed\n",
"1134 ur https://www.youtube.com/watch?v=9bosgmeAAuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/again/again1134.mp4.\n",
"MoviePy - Writing audio in again1134TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/again/again1134.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/again/again1134.mp4\n",
"Task completed\n",
"1135 ur https://www.youtube.com/watch?v=9bosgmeAAuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/here/here1135.mp4.\n",
"MoviePy - Writing audio in here1135TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/here/here1135.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/here/here1135.mp4\n",
"Task completed\n",
"1136 ur https://www.youtube.com/watch?v=9bosgmeAAuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/here/here1136.mp4.\n",
"MoviePy - Writing audio in here1136TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/here/here1136.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/here/here1136.mp4\n",
"Task completed\n",
"1137 ur https://www.youtube.com/watch?v=9bosgmeAAuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/here/here1137.mp4.\n",
"MoviePy - Writing audio in here1137TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/here/here1137.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/here/here1137.mp4\n",
"Task completed\n",
"1138 ur https://www.youtube.com/watch?v=9bosgmeAAuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/here/here1138.mp4.\n",
"MoviePy - Writing audio in here1138TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/here/here1138.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/here/here1138.mp4\n",
"Task completed\n",
"1139 ur https://www.youtube.com/watch?v=9bosgmeAAuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/same/same1139.mp4.\n",
"MoviePy - Writing audio in same1139TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/same/same1139.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/same/same1139.mp4\n",
"Task completed\n",
"1140 ur https://www.youtube.com/watch?v=9bosgmeAAuo\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/same/same1140.mp4.\n",
"MoviePy - Writing audio in same1140TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/same/same1140.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/same/same1140.mp4\n",
"Task completed\n",
"1141 ur https://www.youtube.com/watch?v=vmGh2IPdSRU\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/now/now1141.mp4.\n",
"MoviePy - Writing audio in now1141TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/now/now1141.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/now/now1141.mp4\n",
"Task completed\n",
"1142 ur https://www.youtube.com/watch?v=Yey5VEZE-_g\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/fine/fine1142.mp4.\n",
"MoviePy - Writing audio in fine1142TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/fine/fine1142.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/fine/fine1142.mp4\n",
"Task completed\n",
"1143 ur www.youtube.com/watch?v=Tlr2V74Tr_E\n",
"folder created\n",
"Tlr2V74Tr_E is a private video\n",
"1144 ur https://www.youtube.com/watch?v=G6pN8BFQYDI\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/dance/dance1144.mp4.\n",
"MoviePy - Writing audio in dance1144TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/dance/dance1144.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/dance/dance1144.mp4\n",
"Task completed\n",
"1145 ur https://www.youtube.com/watch?v=PRZcJy5-YGo\n",
"folder created\n",
"PRZcJy5-YGo is unavailable\n",
"1146 ur https://www.youtube.com/watch?v=GesRV-G4NM4\n",
"folder created\n",
"GesRV-G4NM4 is a private video\n",
"1147 ur www.youtube.com/watch?v=BNOu92X_Hws\n",
"folder created\n",
"BNOu92X_Hws is a private video\n",
"1148 ur https://www.youtube.com/watch?v=sI-qbKeOg_8\n",
"folder created\n",
"sI-qbKeOg_8 is a private video\n",
"1149 ur www.youtube.com/watch?v=UrUrq5kVmxo\n",
"folder created\n",
"UrUrq5kVmxo is a private video\n",
"1150 ur https://www.youtube.com/watch?v=lAE4m0AFNcw\n",
"folder created\n",
"lAE4m0AFNcw is unavailable\n",
"1151 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/you/you1151.mp4.\n",
"MoviePy - Writing audio in you1151TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/you/you1151.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/you/you1151.mp4\n",
"Task completed\n",
"1152 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/you/you1152.mp4.\n",
"MoviePy - Writing audio in you1152TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/you/you1152.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/you/you1152.mp4\n",
"Task completed\n",
"1153 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/who/who1153.mp4.\n",
"MoviePy - Writing audio in who1153TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/who/who1153.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/who/who1153.mp4\n",
"Task completed\n",
"1154 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/who/who1154.mp4.\n",
"MoviePy - Writing audio in who1154TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/who/who1154.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/who/who1154.mp4\n",
"Task completed\n",
"1155 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/what/what1155.mp4.\n",
"MoviePy - Writing audio in what1155TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/what/what1155.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/what/what1155.mp4\n",
"Task completed\n",
"1156 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/what/what1156.mp4.\n",
"MoviePy - Writing audio in what1156TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/what/what1156.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/what/what1156.mp4\n",
"Task completed\n",
"1157 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/what/what1157.mp4.\n",
"MoviePy - Writing audio in what1157TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/what/what1157.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/what/what1157.mp4\n",
"Task completed\n",
"1158 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/what/what1158.mp4.\n",
"MoviePy - Writing audio in what1158TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/what/what1158.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/what/what1158.mp4\n",
"Task completed\n",
"1159 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/where/where1159.mp4.\n",
"MoviePy - Writing audio in where1159TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/where/where1159.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/where/where1159.mp4\n",
"Task completed\n",
"1160 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/where/where1160.mp4.\n",
"MoviePy - Writing audio in where1160TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/where/where1160.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/where/where1160.mp4\n",
"Task completed\n",
"1161 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/where/where1161.mp4.\n",
"MoviePy - Writing audio in where1161TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/where/where1161.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/where/where1161.mp4\n",
"Task completed\n",
"1162 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/when/when1162.mp4.\n",
"MoviePy - Writing audio in when1162TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/when/when1162.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/when/when1162.mp4\n",
"Task completed\n",
"1163 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/how/how1163.mp4.\n",
"MoviePy - Writing audio in how1163TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/how/how1163.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/how/how1163.mp4\n",
"Task completed\n",
"1164 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/fine/fine1164.mp4.\n",
"MoviePy - Writing audio in fine1164TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/fine/fine1164.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/fine/fine1164.mp4\n",
"Task completed\n",
"1165 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/tired/tired1165.mp4.\n",
"MoviePy - Writing audio in tired1165TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/tired/tired1165.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/tired/tired1165.mp4\n",
"Task completed\n",
"1166 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/happy/happy1166.mp4.\n",
"MoviePy - Writing audio in happy1166TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/happy/happy1166.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/happy/happy1166.mp4\n",
"Task completed\n",
"1167 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sad/sad1167.mp4.\n",
"MoviePy - Writing audio in sad1167TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sad/sad1167.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sad/sad1167.mp4\n",
"Task completed\n",
"1168 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/work/work1168.mp4.\n",
"MoviePy - Writing audio in work1168TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/work/work1168.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/work/work1168.mp4\n",
"Task completed\n",
"1169 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/school/school1169.mp4.\n",
"MoviePy - Writing audio in school1169TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/school/school1169.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/school/school1169.mp4\n",
"Task completed\n",
"1170 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/english/english1170.mp4.\n",
"MoviePy - Writing audio in english1170TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/english/english1170.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/english/english1170.mp4\n",
"Task completed\n",
"1171 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/learn/learn1171.mp4.\n",
"MoviePy - Writing audio in learn1171TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/learn/learn1171.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/learn/learn1171.mp4\n",
"Task completed\n",
"1172 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/like/like1172.mp4.\n",
"MoviePy - Writing audio in like1172TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/like/like1172.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/like/like1172.mp4\n",
"Task completed\n",
"1173 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/know/know1173.mp4.\n",
"MoviePy - Writing audio in know1173TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/know/know1173.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/know/know1173.mp4\n",
"Task completed\n",
"1174 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/want/want1174.mp4.\n",
"MoviePy - Writing audio in want1174TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/want/want1174.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/want/want1174.mp4\n",
"Task completed\n",
"1175 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/deaf/deaf1175.mp4.\n",
"MoviePy - Writing audio in deaf1175TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/deaf/deaf1175.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/deaf/deaf1175.mp4\n",
"Task completed\n",
"1176 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/hearing/hearing1176.mp4.\n",
"MoviePy - Writing audio in hearing1176TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/hearing/hearing1176.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/hearing/hearing1176.mp4\n",
"Task completed\n",
"1177 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/please/please1177.mp4.\n",
"MoviePy - Writing audio in please1177TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/please/please1177.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/please/please1177.mp4\n",
"Task completed\n",
"1178 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/thank you/thank you1178.mp4.\n",
"MoviePy - Writing audio in thank you1178TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/thank you/thank you1178.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/thank you/thank you1178.mp4\n",
"Task completed\n",
"1179 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/thank you/thank you1179.mp4.\n",
"MoviePy - Writing audio in thank you1179TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/thank you/thank you1179.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/thank you/thank you1179.mp4\n",
"Task completed\n",
"1180 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sorry/sorry1180.mp4.\n",
"MoviePy - Writing audio in sorry1180TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sorry/sorry1180.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sorry/sorry1180.mp4\n",
"Task completed\n",
"1181 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sorry/sorry1181.mp4.\n",
"MoviePy - Writing audio in sorry1181TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sorry/sorry1181.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sorry/sorry1181.mp4\n",
"Task completed\n",
"1182 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/sorry/sorry1182.mp4.\n",
"MoviePy - Writing audio in sorry1182TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/sorry/sorry1182.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/sorry/sorry1182.mp4\n",
"Task completed\n",
"1183 ur https://www.youtube.com/watch?v=cxXEULq9Jpc\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/again/again1183.mp4.\n",
"MoviePy - Writing audio in again1183TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/again/again1183.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/again/again1183.mp4\n",
"Task completed\n",
"1184 ur www.youtube.com/watch?v=Uu2prMSD4l4\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/white/white1184.mp4.\n",
"MoviePy - Writing audio in white1184TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/white/white1184.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/white/white1184.mp4\n",
"Task completed\n",
"1185 ur https://www.youtube.com/watch?v=1dyyaQH7m_Y\n",
"folder created\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/read/read1185.mp4.\n",
"MoviePy - Writing audio in read1185TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/read/read1185.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/read/read1185.mp4\n",
"Task completed\n",
"1186 ur https://www.youtube.com/watch?v=1dyyaQH7m_Y\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/bathroom/bathroom1186.mp4.\n",
"MoviePy - Writing audio in bathroom1186TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/bathroom/bathroom1186.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/bathroom/bathroom1186.mp4\n",
"Task completed\n",
"1187 ur www.youtube.com/watch?v=7AAnD4DyOnE\n",
"folder created\n",
"7AAnD4DyOnE is unavailable\n",
"1188 ur www.youtube.com/watch?v=URb48i4X52U\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/no/no1188.mp4.\n",
"MoviePy - Writing audio in no1188TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/no/no1188.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" "
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - video ready ./videos/test-MS-ASL100/no/no1188.mp4\n",
"Task completed\n",
"1189 ur https://www.youtube.com/watch?v=UmcAkb54I4c\n",
"folder created\n",
"trimmed\n",
"Moviepy - Building video ./videos/test-MS-ASL100/go/go1189.mp4.\n",
"MoviePy - Writing audio in go1189TEMP_MPY_wvf_snd.mp3\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"MoviePy - Done.\n",
"Moviepy - Writing video ./videos/test-MS-ASL100/go/go1189.mp4\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
" \r"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Moviepy - Done !\n",
"Moviepy - video ready ./videos/test-MS-ASL100/go/go1189.mp4\n",
"Task completed\n"
]
}
],
"source": [
"download_videos(val_data100, 100)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "base",
"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.11.8"
}
},
"nbformat": 4,
"nbformat_minor": 2
}