diff --git "a/notebook/text_to_video.ipynb" "b/notebook/text_to_video.ipynb" new file mode 100644--- /dev/null +++ "b/notebook/text_to_video.ipynb" @@ -0,0 +1,1886 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [], + "source": [ + "from moviepy.video.io.VideoFileClip import VideoFileClip, AudioFileClip\n", + "from moviepy.video.VideoClip import TextClip, ImageClip\n", + "from moviepy.video.compositing.CompositeVideoClip import concatenate_videoclips, CompositeVideoClip\n", + "from moviepy.audio.AudioClip import concatenate_audioclips\n", + "from moviepy.video.tools.subtitles import SubtitlesClip\n", + "from moviepy.video.VideoClip import ColorClip\n", + "import os\n", + "from tqdm import tqdm\n", + "import json\n", + "from itertools import accumulate\n", + "import pysrt" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [], + "source": [ + "def format_time(seconds):\n", + " \"\"\"Chuyển đổi thời gian (giây) thành định dạng SRT hh:mm:ss,ms\"\"\"\n", + " mins, sec = divmod(seconds, 60)\n", + " hours, mins = divmod(mins, 60)\n", + " return f\"{int(hours):02}:{int(mins):02}:{int(sec):02},{int((sec % 1) * 1000):03}\"\n", + "def get_audio_duration(audio_path):\n", + " # Lọc các file có đuôi .wav\n", + " audio_paths = os.listdir(audio_path)\n", + " audio_list = sorted([file for file in audio_paths if file.endswith(\".wav\")])\n", + " \n", + " # Khởi tạo danh sách audio duration\n", + " duration_list = []\n", + " \n", + " for audio_path in audio_list:\n", + " # Mở file âm thanh và lấy thời gian\n", + " with AudioFileClip(f\"../data/audio/{audio_path}\") as audio:\n", + " duration_list.append(audio.duration)\n", + " # Tính tổng tích lũy thời gian\n", + " duration_list = [format_time(time) for time in list(accumulate(duration_list))]\n", + " return [format_time(0.0)] + duration_list" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [], + "source": [ + "duration_time = get_audio_duration(\"../data/audio\")" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10.0\n" + ] + } + ], + "source": [ + "print(AudioFileClip(\"../data/audio/1_1.wav\").duration)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [], + "source": [ + "def create_srt_from_time_and_text(duration_time, text_folder, output_srt):\n", + " subtitle = \"\"\n", + " subtitle_index = 1\n", + " text_list = sorted([file for file in os.listdir(text_folder) if file.endswith('txt')])\n", + " # Duyệt qua các mốc thời gian và file text\n", + " for i in range(len(duration_time) - 1):\n", + " start_time = duration_time[i]\n", + " end_time = duration_time[i + 1]\n", + " \n", + " # Lấy tên file text tương ứng\n", + " text_file = text_list[i] # Giả sử các file có tên như '1.txt', '2.txt', ...\n", + " \n", + " text_path = os.path.join(text_folder, text_file)\n", + " \n", + " if os.path.exists(text_path):\n", + " with open(text_path, 'r', encoding='utf-8') as f:\n", + " text = f.read().strip()\n", + " # Thêm phần subtitle vào chuỗi kết quả\n", + " subtitle += f\"{subtitle_index}\\n{start_time} --> {end_time}\\n{text}\\n\\n\"\n", + " subtitle_index += 1\n", + " else:\n", + " print(f\"File {text_file} không tồn tại!\")\n", + " \n", + " # Lưu vào file SRT\n", + " with open(output_srt, 'w', encoding='utf-8') as f:\n", + " f.write(subtitle)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [], + "source": [ + "create_srt_from_time_and_text(duration_time, '../data/text', '../data/output/subtitle.srt')" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [], + "source": [ + "def concatenate_audio_files(audio_folder, output_audio_path):\n", + " # Lọc tất cả các file âm thanh .wav trong thư mục\n", + " audio_clips = []\n", + " \n", + " for file in sorted(os.listdir(audio_folder)):\n", + " if file.endswith('.wav'):\n", + " audio_path = os.path.join(audio_folder, file)\n", + " audio_clip = AudioFileClip(audio_path)\n", + " audio_clips.append(audio_clip)\n", + " \n", + " # Ghép tất cả các audio clip lại với nhau\n", + " final_audio = concatenate_audioclips(audio_clips)\n", + " \n", + " # Lưu kết quả vào file output\n", + " final_audio.write_audiofile(output_audio_path, codec = 'pcm_s16le')\n", + "\n", + " print(f\"File audio đã được lưu tại: {output_audio_path}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "MoviePy - Writing audio in ../data/output/final_audio.wav\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " " + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "MoviePy - Done.\n", + "File audio đã được lưu tại: ../data/output/final_audio.wav\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r" + ] + } + ], + "source": [ + "concatenate_audio_files(\"../data/audio\",\"../data/output/final_audio.wav\")" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [], + "source": [ + "def create_video_from_images(image_folder, audio_path, output_video_path):\n", + " # Đọc file âm thanh để lấy thời lượng\n", + " audio = AudioFileClip(audio_path)\n", + " total_duration = audio.duration # Tổng thời lượng video bằng thời lượng audio\n", + "\n", + " # Đọc tất cả các file ảnh trong thư mục và sắp xếp theo tên\n", + " image_files = [file for file in sorted(os.listdir(image_folder)) if file.endswith('png')]\n", + " \n", + " if not image_files:\n", + " raise ValueError(\"Không tìm thấy ảnh nào trong thư mục!\")\n", + "\n", + " # Tính thời lượng hiển thị cho mỗi ảnh\n", + " duration_per_image = total_duration / len(image_files)\n", + "\n", + " # Tạo danh sách các clip ảnh\n", + " clips = [ImageClip(f\"../data/image/{img}\").with_duration(duration_per_image).resized(width=1280) for img in image_files]\n", + "\n", + " # Ghép các clip ảnh lại với nhau\n", + " final_video = concatenate_videoclips(clips, method=\"chain\")\n", + " \n", + " # Gán âm thanh vào video\n", + " final_video .audio = audio\n", + "\n", + " # Xuất video\n", + " final_video.write_videofile(output_video_path, codec=\"libx264\", audio_codec=\"pcm_s16le\", fps=24)\n", + "\n", + " print(f\"Video đã được lưu tại: {output_video_path}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "MoviePy - Building video ../data/output/output.mp4.\n", + "MoviePy - Writing audio in outputTEMP_MPY_wvf_snd.wav\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " \r" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "MoviePy - Done.\n", + "MoviePy - Writing video ../data/output/output.mp4\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " \r" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "MoviePy - Done !\n", + "MoviePy - video ready ../data/output/output.mp4\n", + "Video đã được lưu tại: ../data/output/output.mp4\n" + ] + } + ], + "source": [ + "create_video_from_images(\"../data/image\",\"../data/output/final_audio.wav\",\"../data/output/output.mp4\")" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [], + "source": [ + "def wrap_text(text, max_width):\n", + " \"\"\"\n", + " Tự động xuống dòng để vừa với chiều rộng max_width.\n", + " \"\"\"\n", + " import textwrap\n", + " return \"\\n\".join(textwrap.wrap(text, width=max_width))" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [], + "source": [ + "def add_subtitles_to_video(video_path, subtitle_path, output_video_path):\n", + " \"\"\"\n", + " Thêm phụ đề từ file .srt trực tiếp vào video.\n", + " \n", + " :param video_path: Đường dẫn video gốc\n", + " :param subtitle_path: Đường dẫn file .srt\n", + " :param output_video_path: Đường dẫn lưu video đầu ra\n", + " \"\"\"\n", + " \n", + " # Đọc file video\n", + " video = VideoFileClip(video_path)\n", + "\n", + " # Đọc file .srt\n", + " subs = pysrt.open(subtitle_path)\n", + "\n", + " subtitle_clips = [] # Danh sách các đoạn phụ đề\n", + "\n", + " # Xử lý từng dòng phụ đề\n", + " for sub in subs:\n", + " # Chuyển th���i gian thành giây\n", + " start_time = sub.start.ordinal / 1000 # Chuyển từ milliseconds sang giây\n", + " end_time = sub.end.ordinal / 1000\n", + " font = \"../BeVietnamPro-Light.ttf\"\n", + " # Tạo clip phụ đề\n", + " txt_clip = TextClip(font=font, text=wrap_text(sub.text, max_width=75), font_size=20, stroke_color=\"black\", stroke_width=3, color=\"#fff\")\n", + " \n", + " # Đặt vị trí hiển thị (giữa phía dưới video)\n", + " txt_clip = txt_clip.with_position(('center', 'bottom')).with_duration(end_time - start_time).with_start(start_time)\n", + " \n", + " subtitle_clips.append(txt_clip)\n", + "\n", + " # Ghép phụ đề vào video\n", + " final_video = CompositeVideoClip([video] + subtitle_clips)\n", + "\n", + " # Xuất video với phụ đề\n", + " final_video.write_videofile(output_video_path, fps=video.fps, codec='libx264', threads=4)\n", + "\n", + " print(f\"Video với phụ đề đã được lưu tại: {output_video_path}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'video_found': True, 'audio_found': True, 'metadata': {'major_brand': 'isom', 'minor_version': '512', 'compatible_brands': 'isomiso2avc1mp41', 'encoder': 'Lavf61.7.100'}, 'inputs': [{'streams': [{'input_number': 0, 'stream_number': 0, 'stream_type': 'video', 'language': None, 'default': True, 'size': [1280, 827], 'bitrate': 237, 'fps': 24.0, 'codec_name': 'h264', 'profile': '(High 4:4:4 Predictive)', 'metadata': {'Metadata': '', 'handler_name': 'VideoHandler', 'vendor_id': '[0][0][0][0]', 'encoder': 'Lavc61.19.100 libx264'}}, {'input_number': 0, 'stream_number': 1, 'stream_type': 'audio', 'language': None, 'default': True, 'fps': 44100, 'bitrate': 1411, 'metadata': {'Metadata': '', 'handler_name': 'SoundHandler', 'vendor_id': '[0][0][0][0]'}}], 'input_number': 0}], 'duration': 402.4, 'bitrate': 1633, 'start': 0.0, 'default_video_input_number': 0, 'default_video_stream_number': 0, 'video_codec_name': 'h264', 'video_profile': '(High 4:4:4 Predictive)', 'video_size': [1280, 827], 'video_bitrate': 237, 'video_fps': 24.0, 'default_audio_input_number': 0, 'default_audio_stream_number': 1, 'audio_fps': 44100, 'audio_bitrate': 1411, 'video_duration': 402.4, 'video_n_frames': 9657}\n", + "/opt/anaconda3/lib/python3.12/site-packages/imageio_ffmpeg/binaries/ffmpeg-macos-aarch64-v7.1 -i ../data/output/output.mp4 -loglevel error -f image2pipe -vf scale=1280:827 -sws_flags bicubic -pix_fmt rgb24 -vcodec rawvideo -\n", + "MoviePy - Building video ../data/output/final_output.mp4.\n", + "MoviePy - Writing audio in final_outputTEMP_MPY_wvf_snd.mp3\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " \r" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "MoviePy - Done.\n", + "MoviePy - Writing video ../data/output/final_output.mp4\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "frame_index: 92%|█████████▏| 8913/9657 [03:29<00:17, 42.00it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8915 (out of a total 9657 frames), at time 371.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8916 (out of a total 9657 frames), at time 371.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 92%|█████████▏| 8918/9657 [03:29<00:17, 41.92it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8917 (out of a total 9657 frames), at time 371.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8918 (out of a total 9657 frames), at time 371.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8919 (out of a total 9657 frames), at time 371.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8920 (out of a total 9657 frames), at time 371.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8921 (out of a total 9657 frames), at time 371.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 92%|█████████▏| 8923/9657 [03:29<00:17, 42.18it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8922 (out of a total 9657 frames), at time 371.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8923 (out of a total 9657 frames), at time 371.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8924 (out of a total 9657 frames), at time 371.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8925 (out of a total 9657 frames), at time 371.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8926 (out of a total 9657 frames), at time 371.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 92%|█████████▏| 8928/9657 [03:29<00:18, 39.91it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8927 (out of a total 9657 frames), at time 371.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8928 (out of a total 9657 frames), at time 372.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8929 (out of a total 9657 frames), at time 372.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8930 (out of a total 9657 frames), at time 372.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8931 (out of a total 9657 frames), at time 372.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 8933/9657 [03:30<00:17, 40.44it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8932 (out of a total 9657 frames), at time 372.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8933 (out of a total 9657 frames), at time 372.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8934 (out of a total 9657 frames), at time 372.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8935 (out of a total 9657 frames), at time 372.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8936 (out of a total 9657 frames), at time 372.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 8938/9657 [03:30<00:17, 40.72it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8937 (out of a total 9657 frames), at time 372.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8938 (out of a total 9657 frames), at time 372.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8939 (out of a total 9657 frames), at time 372.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8940 (out of a total 9657 frames), at time 372.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8941 (out of a total 9657 frames), at time 372.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 8943/9657 [03:30<00:17, 41.17it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8942 (out of a total 9657 frames), at time 372.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8943 (out of a total 9657 frames), at time 372.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8944 (out of a total 9657 frames), at time 372.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8945 (out of a total 9657 frames), at time 372.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8946 (out of a total 9657 frames), at time 372.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 8948/9657 [03:30<00:17, 41.37it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8947 (out of a total 9657 frames), at time 372.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8948 (out of a total 9657 frames), at time 372.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8949 (out of a total 9657 frames), at time 372.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8950 (out of a total 9657 frames), at time 372.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8951 (out of a total 9657 frames), at time 372.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 8953/9657 [03:30<00:18, 38.58it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8952 (out of a total 9657 frames), at time 373.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8953 (out of a total 9657 frames), at time 373.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8954 (out of a total 9657 frames), at time 373.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8955 (out of a total 9657 frames), at time 373.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8956 (out of a total 9657 frames), at time 373.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 8958/9657 [03:30<00:17, 39.36it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8957 (out of a total 9657 frames), at time 373.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8958 (out of a total 9657 frames), at time 373.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8959 (out of a total 9657 frames), at time 373.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8960 (out of a total 9657 frames), at time 373.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8961 (out of a total 9657 frames), at time 373.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 8963/9657 [03:30<00:17, 39.69it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8962 (out of a total 9657 frames), at time 373.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8963 (out of a total 9657 frames), at time 373.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8964 (out of a total 9657 frames), at time 373.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8965 (out of a total 9657 frames), at time 373.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 8967/9657 [03:30<00:18, 37.43it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8966 (out of a total 9657 frames), at time 373.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8967 (out of a total 9657 frames), at time 373.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8968 (out of a total 9657 frames), at time 373.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8969 (out of a total 9657 frames), at time 373.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8970 (out of a total 9657 frames), at time 373.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 8972/9657 [03:31<00:17, 38.27it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8971 (out of a total 9657 frames), at time 373.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8972 (out of a total 9657 frames), at time 373.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8973 (out of a total 9657 frames), at time 373.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8974 (out of a total 9657 frames), at time 373.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8975 (out of a total 9657 frames), at time 373.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 8977/9657 [03:31<00:17, 39.15it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8976 (out of a total 9657 frames), at time 374.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8977 (out of a total 9657 frames), at time 374.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8978 (out of a total 9657 frames), at time 374.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8979 (out of a total 9657 frames), at time 374.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8980 (out of a total 9657 frames), at time 374.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 8982/9657 [03:31<00:16, 40.02it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8981 (out of a total 9657 frames), at time 374.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8982 (out of a total 9657 frames), at time 374.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8983 (out of a total 9657 frames), at time 374.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8984 (out of a total 9657 frames), at time 374.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8985 (out of a total 9657 frames), at time 374.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 8987/9657 [03:31<00:17, 38.18it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8986 (out of a total 9657 frames), at time 374.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8987 (out of a total 9657 frames), at time 374.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8988 (out of a total 9657 frames), at time 374.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8989 (out of a total 9657 frames), at time 374.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8990 (out of a total 9657 frames), at time 374.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 8992/9657 [03:31<00:16, 39.79it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8991 (out of a total 9657 frames), at time 374.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8992 (out of a total 9657 frames), at time 374.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8993 (out of a total 9657 frames), at time 374.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8994 (out of a total 9657 frames), at time 374.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8995 (out of a total 9657 frames), at time 374.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 8997/9657 [03:31<00:16, 40.26it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8996 (out of a total 9657 frames), at time 374.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8997 (out of a total 9657 frames), at time 374.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8998 (out of a total 9657 frames), at time 374.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 8999 (out of a total 9657 frames), at time 374.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9000 (out of a total 9657 frames), at time 375.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 9002/9657 [03:31<00:16, 38.78it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9001 (out of a total 9657 frames), at time 375.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9002 (out of a total 9657 frames), at time 375.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9003 (out of a total 9657 frames), at time 375.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9004 (out of a total 9657 frames), at time 375.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9005 (out of a total 9657 frames), at time 375.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 9007/9657 [03:31<00:16, 39.95it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9006 (out of a total 9657 frames), at time 375.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9007 (out of a total 9657 frames), at time 375.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9008 (out of a total 9657 frames), at time 375.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9009 (out of a total 9657 frames), at time 375.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9010 (out of a total 9657 frames), at time 375.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 9012/9657 [03:32<00:15, 40.81it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9011 (out of a total 9657 frames), at time 375.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9012 (out of a total 9657 frames), at time 375.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9013 (out of a total 9657 frames), at time 375.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9014 (out of a total 9657 frames), at time 375.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9015 (out of a total 9657 frames), at time 375.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 9017/9657 [03:32<00:16, 38.94it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9016 (out of a total 9657 frames), at time 375.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9017 (out of a total 9657 frames), at time 375.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9018 (out of a total 9657 frames), at time 375.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9019 (out of a total 9657 frames), at time 375.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9020 (out of a total 9657 frames), at time 375.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 9022/9657 [03:32<00:15, 40.40it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9021 (out of a total 9657 frames), at time 375.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9022 (out of a total 9657 frames), at time 375.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9023 (out of a total 9657 frames), at time 375.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9024 (out of a total 9657 frames), at time 376.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9025 (out of a total 9657 frames), at time 376.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 93%|█████████▎| 9027/9657 [03:32<00:15, 40.99it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9026 (out of a total 9657 frames), at time 376.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9027 (out of a total 9657 frames), at time 376.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9028 (out of a total 9657 frames), at time 376.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9029 (out of a total 9657 frames), at time 376.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9030 (out of a total 9657 frames), at time 376.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▎| 9032/9657 [03:32<00:15, 41.27it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9031 (out of a total 9657 frames), at time 376.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9032 (out of a total 9657 frames), at time 376.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9033 (out of a total 9657 frames), at time 376.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9034 (out of a total 9657 frames), at time 376.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9035 (out of a total 9657 frames), at time 376.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▎| 9037/9657 [03:32<00:15, 39.40it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9036 (out of a total 9657 frames), at time 376.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9037 (out of a total 9657 frames), at time 376.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9038 (out of a total 9657 frames), at time 376.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9039 (out of a total 9657 frames), at time 376.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9040 (out of a total 9657 frames), at time 376.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▎| 9042/9657 [03:32<00:15, 40.34it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9041 (out of a total 9657 frames), at time 376.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9042 (out of a total 9657 frames), at time 376.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9043 (out of a total 9657 frames), at time 376.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9044 (out of a total 9657 frames), at time 376.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9045 (out of a total 9657 frames), at time 376.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▎| 9047/9657 [03:32<00:14, 40.98it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9046 (out of a total 9657 frames), at time 376.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9047 (out of a total 9657 frames), at time 376.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9048 (out of a total 9657 frames), at time 377.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9049 (out of a total 9657 frames), at time 377.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9050 (out of a total 9657 frames), at time 377.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▎| 9052/9657 [03:33<00:15, 38.64it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9051 (out of a total 9657 frames), at time 377.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9052 (out of a total 9657 frames), at time 377.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9053 (out of a total 9657 frames), at time 377.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9054 (out of a total 9657 frames), at time 377.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9055 (out of a total 9657 frames), at time 377.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▍| 9057/9657 [03:33<00:15, 39.51it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9056 (out of a total 9657 frames), at time 377.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9057 (out of a total 9657 frames), at time 377.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9058 (out of a total 9657 frames), at time 377.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9059 (out of a total 9657 frames), at time 377.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9060 (out of a total 9657 frames), at time 377.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▍| 9062/9657 [03:33<00:14, 40.47it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9061 (out of a total 9657 frames), at time 377.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9062 (out of a total 9657 frames), at time 377.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9063 (out of a total 9657 frames), at time 377.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9064 (out of a total 9657 frames), at time 377.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9065 (out of a total 9657 frames), at time 377.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▍| 9067/9657 [03:33<00:14, 40.46it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9066 (out of a total 9657 frames), at time 377.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9067 (out of a total 9657 frames), at time 377.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9068 (out of a total 9657 frames), at time 377.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9069 (out of a total 9657 frames), at time 377.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9070 (out of a total 9657 frames), at time 377.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▍| 9072/9657 [03:33<00:14, 39.47it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9071 (out of a total 9657 frames), at time 377.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9072 (out of a total 9657 frames), at time 378.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9073 (out of a total 9657 frames), at time 378.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9074 (out of a total 9657 frames), at time 378.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9075 (out of a total 9657 frames), at time 378.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▍| 9077/9657 [03:33<00:14, 40.85it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9076 (out of a total 9657 frames), at time 378.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9077 (out of a total 9657 frames), at time 378.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9078 (out of a total 9657 frames), at time 378.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9079 (out of a total 9657 frames), at time 378.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9080 (out of a total 9657 frames), at time 378.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▍| 9082/9657 [03:33<00:14, 40.86it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9081 (out of a total 9657 frames), at time 378.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9082 (out of a total 9657 frames), at time 378.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9083 (out of a total 9657 frames), at time 378.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9084 (out of a total 9657 frames), at time 378.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9085 (out of a total 9657 frames), at time 378.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▍| 9087/9657 [03:33<00:14, 38.71it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9086 (out of a total 9657 frames), at time 378.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9087 (out of a total 9657 frames), at time 378.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9088 (out of a total 9657 frames), at time 378.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9089 (out of a total 9657 frames), at time 378.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9090 (out of a total 9657 frames), at time 378.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▍| 9092/9657 [03:34<00:14, 39.69it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9091 (out of a total 9657 frames), at time 378.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9092 (out of a total 9657 frames), at time 378.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9093 (out of a total 9657 frames), at time 378.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9094 (out of a total 9657 frames), at time 378.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9095 (out of a total 9657 frames), at time 378.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▍| 9097/9657 [03:34<00:13, 40.73it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9096 (out of a total 9657 frames), at time 379.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9097 (out of a total 9657 frames), at time 379.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9098 (out of a total 9657 frames), at time 379.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9099 (out of a total 9657 frames), at time 379.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9100 (out of a total 9657 frames), at time 379.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▍| 9102/9657 [03:34<00:14, 38.79it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9101 (out of a total 9657 frames), at time 379.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9102 (out of a total 9657 frames), at time 379.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9103 (out of a total 9657 frames), at time 379.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9104 (out of a total 9657 frames), at time 379.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9105 (out of a total 9657 frames), at time 379.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▍| 9107/9657 [03:34<00:13, 39.58it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9106 (out of a total 9657 frames), at time 379.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9107 (out of a total 9657 frames), at time 379.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9108 (out of a total 9657 frames), at time 379.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9109 (out of a total 9657 frames), at time 379.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9110 (out of a total 9657 frames), at time 379.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▍| 9112/9657 [03:34<00:13, 39.99it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9111 (out of a total 9657 frames), at time 379.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9112 (out of a total 9657 frames), at time 379.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9113 (out of a total 9657 frames), at time 379.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9114 (out of a total 9657 frames), at time 379.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9115 (out of a total 9657 frames), at time 379.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▍| 9117/9657 [03:34<00:14, 38.52it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9116 (out of a total 9657 frames), at time 379.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9117 (out of a total 9657 frames), at time 379.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9118 (out of a total 9657 frames), at time 379.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9119 (out of a total 9657 frames), at time 379.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9120 (out of a total 9657 frames), at time 380.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 94%|█████████▍| 9122/9657 [03:34<00:13, 39.96it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9121 (out of a total 9657 frames), at time 380.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9122 (out of a total 9657 frames), at time 380.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9123 (out of a total 9657 frames), at time 380.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9124 (out of a total 9657 frames), at time 380.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9125 (out of a total 9657 frames), at time 380.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▍| 9127/9657 [03:34<00:12, 40.97it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9126 (out of a total 9657 frames), at time 380.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9127 (out of a total 9657 frames), at time 380.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9128 (out of a total 9657 frames), at time 380.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9129 (out of a total 9657 frames), at time 380.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9130 (out of a total 9657 frames), at time 380.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▍| 9132/9657 [03:35<00:13, 38.89it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9131 (out of a total 9657 frames), at time 380.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9132 (out of a total 9657 frames), at time 380.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9133 (out of a total 9657 frames), at time 380.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9134 (out of a total 9657 frames), at time 380.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9135 (out of a total 9657 frames), at time 380.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▍| 9137/9657 [03:35<00:13, 39.84it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9136 (out of a total 9657 frames), at time 380.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9137 (out of a total 9657 frames), at time 380.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9138 (out of a total 9657 frames), at time 380.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9139 (out of a total 9657 frames), at time 380.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9140 (out of a total 9657 frames), at time 380.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▍| 9142/9657 [03:35<00:12, 40.83it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9141 (out of a total 9657 frames), at time 380.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9142 (out of a total 9657 frames), at time 380.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9143 (out of a total 9657 frames), at time 380.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9144 (out of a total 9657 frames), at time 381.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9145 (out of a total 9657 frames), at time 381.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▍| 9147/9657 [03:35<00:13, 39.13it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9146 (out of a total 9657 frames), at time 381.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9147 (out of a total 9657 frames), at time 381.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9148 (out of a total 9657 frames), at time 381.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9149 (out of a total 9657 frames), at time 381.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9150 (out of a total 9657 frames), at time 381.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▍| 9152/9657 [03:35<00:12, 39.86it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9151 (out of a total 9657 frames), at time 381.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9152 (out of a total 9657 frames), at time 381.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9153 (out of a total 9657 frames), at time 381.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9154 (out of a total 9657 frames), at time 381.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9155 (out of a total 9657 frames), at time 381.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▍| 9157/9657 [03:35<00:12, 40.51it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9156 (out of a total 9657 frames), at time 381.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9157 (out of a total 9657 frames), at time 381.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9158 (out of a total 9657 frames), at time 381.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9159 (out of a total 9657 frames), at time 381.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9160 (out of a total 9657 frames), at time 381.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▍| 9162/9657 [03:35<00:12, 38.90it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9161 (out of a total 9657 frames), at time 381.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9162 (out of a total 9657 frames), at time 381.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9163 (out of a total 9657 frames), at time 381.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9164 (out of a total 9657 frames), at time 381.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9165 (out of a total 9657 frames), at time 381.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▍| 9167/9657 [03:35<00:12, 40.06it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9166 (out of a total 9657 frames), at time 381.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9167 (out of a total 9657 frames), at time 381.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9168 (out of a total 9657 frames), at time 382.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9169 (out of a total 9657 frames), at time 382.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9170 (out of a total 9657 frames), at time 382.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▍| 9172/9657 [03:36<00:11, 40.71it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9171 (out of a total 9657 frames), at time 382.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9172 (out of a total 9657 frames), at time 382.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9173 (out of a total 9657 frames), at time 382.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9174 (out of a total 9657 frames), at time 382.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9175 (out of a total 9657 frames), at time 382.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▌| 9177/9657 [03:36<00:12, 39.01it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9176 (out of a total 9657 frames), at time 382.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9177 (out of a total 9657 frames), at time 382.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9178 (out of a total 9657 frames), at time 382.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9179 (out of a total 9657 frames), at time 382.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9180 (out of a total 9657 frames), at time 382.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▌| 9182/9657 [03:36<00:11, 40.02it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9181 (out of a total 9657 frames), at time 382.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9182 (out of a total 9657 frames), at time 382.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9183 (out of a total 9657 frames), at time 382.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9184 (out of a total 9657 frames), at time 382.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9185 (out of a total 9657 frames), at time 382.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▌| 9187/9657 [03:36<00:11, 41.15it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9186 (out of a total 9657 frames), at time 382.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9187 (out of a total 9657 frames), at time 382.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9188 (out of a total 9657 frames), at time 382.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9189 (out of a total 9657 frames), at time 382.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9190 (out of a total 9657 frames), at time 382.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▌| 9192/9657 [03:36<00:12, 38.67it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9191 (out of a total 9657 frames), at time 382.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9192 (out of a total 9657 frames), at time 383.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9193 (out of a total 9657 frames), at time 383.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9194 (out of a total 9657 frames), at time 383.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9195 (out of a total 9657 frames), at time 383.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▌| 9197/9657 [03:36<00:11, 39.34it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9196 (out of a total 9657 frames), at time 383.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9197 (out of a total 9657 frames), at time 383.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9198 (out of a total 9657 frames), at time 383.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9199 (out of a total 9657 frames), at time 383.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9200 (out of a total 9657 frames), at time 383.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▌| 9202/9657 [03:36<00:11, 40.60it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9201 (out of a total 9657 frames), at time 383.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9202 (out of a total 9657 frames), at time 383.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9203 (out of a total 9657 frames), at time 383.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9204 (out of a total 9657 frames), at time 383.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9205 (out of a total 9657 frames), at time 383.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▌| 9207/9657 [03:36<00:11, 39.11it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9206 (out of a total 9657 frames), at time 383.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9207 (out of a total 9657 frames), at time 383.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9208 (out of a total 9657 frames), at time 383.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9209 (out of a total 9657 frames), at time 383.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9210 (out of a total 9657 frames), at time 383.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▌| 9212/9657 [03:37<00:11, 39.86it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9211 (out of a total 9657 frames), at time 383.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9212 (out of a total 9657 frames), at time 383.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9213 (out of a total 9657 frames), at time 383.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9214 (out of a total 9657 frames), at time 383.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9215 (out of a total 9657 frames), at time 383.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▌| 9217/9657 [03:37<00:10, 40.80it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9216 (out of a total 9657 frames), at time 384.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9217 (out of a total 9657 frames), at time 384.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9218 (out of a total 9657 frames), at time 384.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9219 (out of a total 9657 frames), at time 384.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9220 (out of a total 9657 frames), at time 384.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 95%|█████████▌| 9222/9657 [03:37<00:10, 41.32it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9221 (out of a total 9657 frames), at time 384.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9222 (out of a total 9657 frames), at time 384.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9223 (out of a total 9657 frames), at time 384.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9224 (out of a total 9657 frames), at time 384.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9225 (out of a total 9657 frames), at time 384.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▌| 9227/9657 [03:37<00:10, 39.59it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9226 (out of a total 9657 frames), at time 384.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9227 (out of a total 9657 frames), at time 384.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9228 (out of a total 9657 frames), at time 384.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9229 (out of a total 9657 frames), at time 384.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9230 (out of a total 9657 frames), at time 384.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▌| 9232/9657 [03:37<00:10, 40.37it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9231 (out of a total 9657 frames), at time 384.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9232 (out of a total 9657 frames), at time 384.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9233 (out of a total 9657 frames), at time 384.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9234 (out of a total 9657 frames), at time 384.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9235 (out of a total 9657 frames), at time 384.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▌| 9237/9657 [03:37<00:10, 39.67it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9236 (out of a total 9657 frames), at time 384.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9237 (out of a total 9657 frames), at time 384.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9238 (out of a total 9657 frames), at time 384.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9239 (out of a total 9657 frames), at time 384.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▌| 9241/9657 [03:37<00:10, 38.20it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9240 (out of a total 9657 frames), at time 385.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9241 (out of a total 9657 frames), at time 385.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9242 (out of a total 9657 frames), at time 385.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9243 (out of a total 9657 frames), at time 385.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9244 (out of a total 9657 frames), at time 385.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▌| 9246/9657 [03:37<00:10, 39.80it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9245 (out of a total 9657 frames), at time 385.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9246 (out of a total 9657 frames), at time 385.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9247 (out of a total 9657 frames), at time 385.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9248 (out of a total 9657 frames), at time 385.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9249 (out of a total 9657 frames), at time 385.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▌| 9251/9657 [03:38<00:10, 40.31it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9250 (out of a total 9657 frames), at time 385.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9251 (out of a total 9657 frames), at time 385.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9252 (out of a total 9657 frames), at time 385.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9253 (out of a total 9657 frames), at time 385.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9254 (out of a total 9657 frames), at time 385.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▌| 9256/9657 [03:38<00:10, 36.50it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9255 (out of a total 9657 frames), at time 385.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9256 (out of a total 9657 frames), at time 385.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9257 (out of a total 9657 frames), at time 385.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9258 (out of a total 9657 frames), at time 385.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▌| 9260/9657 [03:38<00:10, 36.32it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9259 (out of a total 9657 frames), at time 385.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9260 (out of a total 9657 frames), at time 385.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9261 (out of a total 9657 frames), at time 385.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9262 (out of a total 9657 frames), at time 385.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▌| 9264/9657 [03:38<00:10, 36.12it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9263 (out of a total 9657 frames), at time 385.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9264 (out of a total 9657 frames), at time 386.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9265 (out of a total 9657 frames), at time 386.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9266 (out of a total 9657 frames), at time 386.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▌| 9268/9657 [03:38<00:11, 35.04it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9267 (out of a total 9657 frames), at time 386.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9268 (out of a total 9657 frames), at time 386.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9269 (out of a total 9657 frames), at time 386.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9270 (out of a total 9657 frames), at time 386.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▌| 9272/9657 [03:38<00:10, 35.82it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9271 (out of a total 9657 frames), at time 386.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9272 (out of a total 9657 frames), at time 386.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9273 (out of a total 9657 frames), at time 386.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9274 (out of a total 9657 frames), at time 386.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9275 (out of a total 9657 frames), at time 386.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▌| 9277/9657 [03:38<00:09, 38.00it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9276 (out of a total 9657 frames), at time 386.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9277 (out of a total 9657 frames), at time 386.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9278 (out of a total 9657 frames), at time 386.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9279 (out of a total 9657 frames), at time 386.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▌| 9281/9657 [03:38<00:09, 37.91it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9280 (out of a total 9657 frames), at time 386.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9281 (out of a total 9657 frames), at time 386.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9282 (out of a total 9657 frames), at time 386.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9283 (out of a total 9657 frames), at time 386.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▌| 9285/9657 [03:39<00:10, 36.49it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9284 (out of a total 9657 frames), at time 386.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9285 (out of a total 9657 frames), at time 386.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9286 (out of a total 9657 frames), at time 386.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9287 (out of a total 9657 frames), at time 386.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9288 (out of a total 9657 frames), at time 387.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▌| 9290/9657 [03:39<00:09, 38.35it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9289 (out of a total 9657 frames), at time 387.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9290 (out of a total 9657 frames), at time 387.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9291 (out of a total 9657 frames), at time 387.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9292 (out of a total 9657 frames), at time 387.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▌| 9294/9657 [03:39<00:09, 38.68it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9293 (out of a total 9657 frames), at time 387.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9294 (out of a total 9657 frames), at time 387.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9295 (out of a total 9657 frames), at time 387.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9296 (out of a total 9657 frames), at time 387.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▋| 9298/9657 [03:39<00:09, 37.11it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9297 (out of a total 9657 frames), at time 387.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9298 (out of a total 9657 frames), at time 387.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9299 (out of a total 9657 frames), at time 387.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9300 (out of a total 9657 frames), at time 387.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▋| 9302/9657 [03:39<00:09, 37.80it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9301 (out of a total 9657 frames), at time 387.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9302 (out of a total 9657 frames), at time 387.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9303 (out of a total 9657 frames), at time 387.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9304 (out of a total 9657 frames), at time 387.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▋| 9306/9657 [03:39<00:09, 38.31it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9305 (out of a total 9657 frames), at time 387.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9306 (out of a total 9657 frames), at time 387.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9307 (out of a total 9657 frames), at time 387.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9308 (out of a total 9657 frames), at time 387.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▋| 9310/9657 [03:39<00:10, 34.36it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9309 (out of a total 9657 frames), at time 387.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9310 (out of a total 9657 frames), at time 387.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9311 (out of a total 9657 frames), at time 387.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9312 (out of a total 9657 frames), at time 388.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▋| 9314/9657 [03:39<00:09, 35.50it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9313 (out of a total 9657 frames), at time 388.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9314 (out of a total 9657 frames), at time 388.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9315 (out of a total 9657 frames), at time 388.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9316 (out of a total 9657 frames), at time 388.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 96%|█████████▋| 9318/9657 [03:39<00:09, 35.49it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9317 (out of a total 9657 frames), at time 388.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9318 (out of a total 9657 frames), at time 388.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9319 (out of a total 9657 frames), at time 388.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9320 (out of a total 9657 frames), at time 388.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9322/9657 [03:40<00:09, 35.45it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9321 (out of a total 9657 frames), at time 388.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9322 (out of a total 9657 frames), at time 388.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9323 (out of a total 9657 frames), at time 388.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9324 (out of a total 9657 frames), at time 388.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9326/9657 [03:40<00:09, 33.16it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9325 (out of a total 9657 frames), at time 388.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9326 (out of a total 9657 frames), at time 388.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9327 (out of a total 9657 frames), at time 388.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9328 (out of a total 9657 frames), at time 388.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9330/9657 [03:40<00:09, 34.22it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9329 (out of a total 9657 frames), at time 388.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9330 (out of a total 9657 frames), at time 388.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9331 (out of a total 9657 frames), at time 388.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9332 (out of a total 9657 frames), at time 388.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9334/9657 [03:40<00:09, 35.39it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9333 (out of a total 9657 frames), at time 388.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9334 (out of a total 9657 frames), at time 388.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9335 (out of a total 9657 frames), at time 388.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9336 (out of a total 9657 frames), at time 389.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9338/9657 [03:40<00:09, 34.11it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9337 (out of a total 9657 frames), at time 389.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9338 (out of a total 9657 frames), at time 389.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9339 (out of a total 9657 frames), at time 389.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9340 (out of a total 9657 frames), at time 389.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9342/9657 [03:40<00:08, 35.49it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9341 (out of a total 9657 frames), at time 389.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9342 (out of a total 9657 frames), at time 389.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9343 (out of a total 9657 frames), at time 389.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9344 (out of a total 9657 frames), at time 389.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9345 (out of a total 9657 frames), at time 389.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9347/9657 [03:40<00:08, 37.20it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9346 (out of a total 9657 frames), at time 389.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9347 (out of a total 9657 frames), at time 389.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9348 (out of a total 9657 frames), at time 389.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9349 (out of a total 9657 frames), at time 389.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9351/9657 [03:40<00:08, 35.28it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9350 (out of a total 9657 frames), at time 389.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9351 (out of a total 9657 frames), at time 389.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9352 (out of a total 9657 frames), at time 389.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9353 (out of a total 9657 frames), at time 389.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9354 (out of a total 9657 frames), at time 389.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9356/9657 [03:40<00:08, 37.24it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9355 (out of a total 9657 frames), at time 389.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9356 (out of a total 9657 frames), at time 389.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9357 (out of a total 9657 frames), at time 389.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9358 (out of a total 9657 frames), at time 389.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9359 (out of a total 9657 frames), at time 389.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9361/9657 [03:41<00:07, 38.32it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9360 (out of a total 9657 frames), at time 390.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9361 (out of a total 9657 frames), at time 390.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9362 (out of a total 9657 frames), at time 390.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9363 (out of a total 9657 frames), at time 390.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9365/9657 [03:41<00:07, 38.64it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9364 (out of a total 9657 frames), at time 390.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9365 (out of a total 9657 frames), at time 390.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9366 (out of a total 9657 frames), at time 390.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9367 (out of a total 9657 frames), at time 390.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9369/9657 [03:41<00:07, 36.83it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9368 (out of a total 9657 frames), at time 390.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9369 (out of a total 9657 frames), at time 390.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9370 (out of a total 9657 frames), at time 390.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9371 (out of a total 9657 frames), at time 390.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9372 (out of a total 9657 frames), at time 390.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9374/9657 [03:41<00:07, 38.35it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9373 (out of a total 9657 frames), at time 390.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9374 (out of a total 9657 frames), at time 390.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9375 (out of a total 9657 frames), at time 390.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9376 (out of a total 9657 frames), at time 390.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9377 (out of a total 9657 frames), at time 390.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9379/9657 [03:41<00:07, 39.61it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9378 (out of a total 9657 frames), at time 390.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9379 (out of a total 9657 frames), at time 390.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9380 (out of a total 9657 frames), at time 390.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9381 (out of a total 9657 frames), at time 390.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9383/9657 [03:41<00:07, 36.33it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9382 (out of a total 9657 frames), at time 390.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9383 (out of a total 9657 frames), at time 390.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9384 (out of a total 9657 frames), at time 391.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9385 (out of a total 9657 frames), at time 391.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9386 (out of a total 9657 frames), at time 391.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9388/9657 [03:41<00:07, 37.67it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9387 (out of a total 9657 frames), at time 391.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9388 (out of a total 9657 frames), at time 391.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9389 (out of a total 9657 frames), at time 391.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9390 (out of a total 9657 frames), at time 391.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9391 (out of a total 9657 frames), at time 391.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9393/9657 [03:41<00:06, 39.70it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9392 (out of a total 9657 frames), at time 391.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9393 (out of a total 9657 frames), at time 391.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9394 (out of a total 9657 frames), at time 391.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9395 (out of a total 9657 frames), at time 391.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9396 (out of a total 9657 frames), at time 391.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9398/9657 [03:42<00:06, 38.39it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9397 (out of a total 9657 frames), at time 391.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9398 (out of a total 9657 frames), at time 391.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9399 (out of a total 9657 frames), at time 391.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9400 (out of a total 9657 frames), at time 391.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9401 (out of a total 9657 frames), at time 391.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9403/9657 [03:42<00:06, 39.84it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9402 (out of a total 9657 frames), at time 391.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9403 (out of a total 9657 frames), at time 391.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9404 (out of a total 9657 frames), at time 391.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9405 (out of a total 9657 frames), at time 391.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9406 (out of a total 9657 frames), at time 391.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9408/9657 [03:42<00:06, 40.62it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9407 (out of a total 9657 frames), at time 391.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9408 (out of a total 9657 frames), at time 392.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9409 (out of a total 9657 frames), at time 392.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9410 (out of a total 9657 frames), at time 392.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9411 (out of a total 9657 frames), at time 392.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 97%|█████████▋| 9413/9657 [03:42<00:06, 38.80it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9412 (out of a total 9657 frames), at time 392.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9413 (out of a total 9657 frames), at time 392.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9414 (out of a total 9657 frames), at time 392.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9415 (out of a total 9657 frames), at time 392.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9416 (out of a total 9657 frames), at time 392.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9418/9657 [03:42<00:06, 39.67it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9417 (out of a total 9657 frames), at time 392.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9418 (out of a total 9657 frames), at time 392.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9419 (out of a total 9657 frames), at time 392.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9420 (out of a total 9657 frames), at time 392.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9421 (out of a total 9657 frames), at time 392.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9423/9657 [03:42<00:05, 40.75it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9422 (out of a total 9657 frames), at time 392.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9423 (out of a total 9657 frames), at time 392.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9424 (out of a total 9657 frames), at time 392.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9425 (out of a total 9657 frames), at time 392.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9426 (out of a total 9657 frames), at time 392.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9428/9657 [03:42<00:05, 38.96it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9427 (out of a total 9657 frames), at time 392.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9428 (out of a total 9657 frames), at time 392.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9429 (out of a total 9657 frames), at time 392.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9430 (out of a total 9657 frames), at time 392.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9431 (out of a total 9657 frames), at time 392.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9433/9657 [03:42<00:05, 40.18it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9432 (out of a total 9657 frames), at time 393.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9433 (out of a total 9657 frames), at time 393.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9434 (out of a total 9657 frames), at time 393.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9435 (out of a total 9657 frames), at time 393.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9436 (out of a total 9657 frames), at time 393.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9438/9657 [03:43<00:05, 40.72it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9437 (out of a total 9657 frames), at time 393.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9438 (out of a total 9657 frames), at time 393.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9439 (out of a total 9657 frames), at time 393.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9440 (out of a total 9657 frames), at time 393.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9441 (out of a total 9657 frames), at time 393.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9443/9657 [03:43<00:05, 39.19it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9442 (out of a total 9657 frames), at time 393.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9443 (out of a total 9657 frames), at time 393.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9444 (out of a total 9657 frames), at time 393.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9445 (out of a total 9657 frames), at time 393.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9446 (out of a total 9657 frames), at time 393.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9448/9657 [03:43<00:05, 39.83it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9447 (out of a total 9657 frames), at time 393.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9448 (out of a total 9657 frames), at time 393.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9449 (out of a total 9657 frames), at time 393.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9450 (out of a total 9657 frames), at time 393.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9451 (out of a total 9657 frames), at time 393.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9453/9657 [03:43<00:04, 41.01it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9452 (out of a total 9657 frames), at time 393.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9453 (out of a total 9657 frames), at time 393.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9454 (out of a total 9657 frames), at time 393.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9455 (out of a total 9657 frames), at time 393.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9456 (out of a total 9657 frames), at time 394.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9458/9657 [03:43<00:05, 39.19it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9457 (out of a total 9657 frames), at time 394.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9458 (out of a total 9657 frames), at time 394.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9459 (out of a total 9657 frames), at time 394.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9460 (out of a total 9657 frames), at time 394.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9461 (out of a total 9657 frames), at time 394.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9463/9657 [03:43<00:04, 40.32it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9462 (out of a total 9657 frames), at time 394.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9463 (out of a total 9657 frames), at time 394.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9464 (out of a total 9657 frames), at time 394.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9465 (out of a total 9657 frames), at time 394.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9466 (out of a total 9657 frames), at time 394.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9468/9657 [03:43<00:04, 40.72it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9467 (out of a total 9657 frames), at time 394.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9468 (out of a total 9657 frames), at time 394.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9469 (out of a total 9657 frames), at time 394.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9470 (out of a total 9657 frames), at time 394.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9471 (out of a total 9657 frames), at time 394.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9473/9657 [03:43<00:04, 38.97it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9472 (out of a total 9657 frames), at time 394.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9473 (out of a total 9657 frames), at time 394.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9474 (out of a total 9657 frames), at time 394.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9475 (out of a total 9657 frames), at time 394.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9476 (out of a total 9657 frames), at time 394.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9478/9657 [03:44<00:04, 40.00it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9477 (out of a total 9657 frames), at time 394.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9478 (out of a total 9657 frames), at time 394.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9479 (out of a total 9657 frames), at time 394.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9480 (out of a total 9657 frames), at time 395.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9481 (out of a total 9657 frames), at time 395.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9483/9657 [03:44<00:04, 40.83it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9482 (out of a total 9657 frames), at time 395.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9483 (out of a total 9657 frames), at time 395.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9484 (out of a total 9657 frames), at time 395.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9485 (out of a total 9657 frames), at time 395.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9486 (out of a total 9657 frames), at time 395.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9488/9657 [03:44<00:04, 38.76it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9487 (out of a total 9657 frames), at time 395.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9488 (out of a total 9657 frames), at time 395.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9489 (out of a total 9657 frames), at time 395.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9490 (out of a total 9657 frames), at time 395.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9491 (out of a total 9657 frames), at time 395.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9493/9657 [03:44<00:04, 39.91it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9492 (out of a total 9657 frames), at time 395.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9493 (out of a total 9657 frames), at time 395.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9494 (out of a total 9657 frames), at time 395.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9495 (out of a total 9657 frames), at time 395.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9496 (out of a total 9657 frames), at time 395.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9498/9657 [03:44<00:03, 40.20it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9497 (out of a total 9657 frames), at time 395.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9498 (out of a total 9657 frames), at time 395.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9499 (out of a total 9657 frames), at time 395.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9500 (out of a total 9657 frames), at time 395.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9501 (out of a total 9657 frames), at time 395.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9503/9657 [03:44<00:04, 36.93it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9502 (out of a total 9657 frames), at time 395.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9503 (out of a total 9657 frames), at time 395.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9504 (out of a total 9657 frames), at time 396.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9505 (out of a total 9657 frames), at time 396.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9507/9657 [03:44<00:04, 37.42it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9506 (out of a total 9657 frames), at time 396.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9507 (out of a total 9657 frames), at time 396.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9508 (out of a total 9657 frames), at time 396.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9509 (out of a total 9657 frames), at time 396.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9510 (out of a total 9657 frames), at time 396.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 98%|█████████▊| 9512/9657 [03:44<00:03, 38.68it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9511 (out of a total 9657 frames), at time 396.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9512 (out of a total 9657 frames), at time 396.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9513 (out of a total 9657 frames), at time 396.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9514 (out of a total 9657 frames), at time 396.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▊| 9516/9657 [03:45<00:03, 36.71it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9515 (out of a total 9657 frames), at time 396.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9516 (out of a total 9657 frames), at time 396.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9517 (out of a total 9657 frames), at time 396.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9518 (out of a total 9657 frames), at time 396.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▊| 9520/9657 [03:45<00:03, 37.14it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9519 (out of a total 9657 frames), at time 396.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9520 (out of a total 9657 frames), at time 396.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9521 (out of a total 9657 frames), at time 396.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9522 (out of a total 9657 frames), at time 396.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9523 (out of a total 9657 frames), at time 396.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▊| 9525/9657 [03:45<00:03, 38.53it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9524 (out of a total 9657 frames), at time 396.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9525 (out of a total 9657 frames), at time 396.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9526 (out of a total 9657 frames), at time 396.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9527 (out of a total 9657 frames), at time 396.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▊| 9529/9657 [03:45<00:03, 38.40it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9528 (out of a total 9657 frames), at time 397.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9529 (out of a total 9657 frames), at time 397.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9530 (out of a total 9657 frames), at time 397.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9531 (out of a total 9657 frames), at time 397.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▊| 9533/9657 [03:45<00:03, 36.47it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9532 (out of a total 9657 frames), at time 397.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9533 (out of a total 9657 frames), at time 397.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9534 (out of a total 9657 frames), at time 397.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9535 (out of a total 9657 frames), at time 397.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▉| 9537/9657 [03:45<00:03, 37.17it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9536 (out of a total 9657 frames), at time 397.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9537 (out of a total 9657 frames), at time 397.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9538 (out of a total 9657 frames), at time 397.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9539 (out of a total 9657 frames), at time 397.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9540 (out of a total 9657 frames), at time 397.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▉| 9542/9657 [03:45<00:02, 38.58it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9541 (out of a total 9657 frames), at time 397.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9542 (out of a total 9657 frames), at time 397.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9543 (out of a total 9657 frames), at time 397.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9544 (out of a total 9657 frames), at time 397.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▉| 9546/9657 [03:45<00:03, 36.54it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9545 (out of a total 9657 frames), at time 397.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9546 (out of a total 9657 frames), at time 397.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9547 (out of a total 9657 frames), at time 397.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9548 (out of a total 9657 frames), at time 397.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▉| 9550/9657 [03:45<00:02, 37.37it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9549 (out of a total 9657 frames), at time 397.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9550 (out of a total 9657 frames), at time 397.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9551 (out of a total 9657 frames), at time 397.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9552 (out of a total 9657 frames), at time 398.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9553 (out of a total 9657 frames), at time 398.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▉| 9555/9657 [03:46<00:02, 38.39it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9554 (out of a total 9657 frames), at time 398.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9555 (out of a total 9657 frames), at time 398.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9556 (out of a total 9657 frames), at time 398.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9557 (out of a total 9657 frames), at time 398.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9558 (out of a total 9657 frames), at time 398.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▉| 9560/9657 [03:46<00:02, 39.22it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9559 (out of a total 9657 frames), at time 398.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9560 (out of a total 9657 frames), at time 398.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9561 (out of a total 9657 frames), at time 398.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9562 (out of a total 9657 frames), at time 398.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▉| 9564/9657 [03:46<00:02, 36.51it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9563 (out of a total 9657 frames), at time 398.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9564 (out of a total 9657 frames), at time 398.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9565 (out of a total 9657 frames), at time 398.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9566 (out of a total 9657 frames), at time 398.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9567 (out of a total 9657 frames), at time 398.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▉| 9569/9657 [03:46<00:02, 38.27it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9568 (out of a total 9657 frames), at time 398.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9569 (out of a total 9657 frames), at time 398.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9570 (out of a total 9657 frames), at time 398.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9571 (out of a total 9657 frames), at time 398.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▉| 9573/9657 [03:46<00:02, 38.51it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9572 (out of a total 9657 frames), at time 398.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9573 (out of a total 9657 frames), at time 398.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9574 (out of a total 9657 frames), at time 398.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9575 (out of a total 9657 frames), at time 398.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▉| 9577/9657 [03:46<00:02, 36.31it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9576 (out of a total 9657 frames), at time 399.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9577 (out of a total 9657 frames), at time 399.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9578 (out of a total 9657 frames), at time 399.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9579 (out of a total 9657 frames), at time 399.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▉| 9581/9657 [03:46<00:02, 37.11it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9580 (out of a total 9657 frames), at time 399.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9581 (out of a total 9657 frames), at time 399.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9582 (out of a total 9657 frames), at time 399.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9583 (out of a total 9657 frames), at time 399.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9584 (out of a total 9657 frames), at time 399.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▉| 9586/9657 [03:46<00:01, 38.83it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9585 (out of a total 9657 frames), at time 399.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9586 (out of a total 9657 frames), at time 399.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9587 (out of a total 9657 frames), at time 399.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9588 (out of a total 9657 frames), at time 399.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9589 (out of a total 9657 frames), at time 399.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▉| 9591/9657 [03:47<00:01, 39.25it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9590 (out of a total 9657 frames), at time 399.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9591 (out of a total 9657 frames), at time 399.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9592 (out of a total 9657 frames), at time 399.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9593 (out of a total 9657 frames), at time 399.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▉| 9595/9657 [03:47<00:01, 37.19it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9594 (out of a total 9657 frames), at time 399.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9595 (out of a total 9657 frames), at time 399.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9596 (out of a total 9657 frames), at time 399.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9597 (out of a total 9657 frames), at time 399.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9598 (out of a total 9657 frames), at time 399.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▉| 9600/9657 [03:47<00:01, 38.73it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9599 (out of a total 9657 frames), at time 399.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9600 (out of a total 9657 frames), at time 400.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9601 (out of a total 9657 frames), at time 400.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9602 (out of a total 9657 frames), at time 400.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 99%|█████████▉| 9604/9657 [03:47<00:01, 37.46it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9603 (out of a total 9657 frames), at time 400.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9604 (out of a total 9657 frames), at time 400.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9605 (out of a total 9657 frames), at time 400.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9606 (out of a total 9657 frames), at time 400.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9607 (out of a total 9657 frames), at time 400.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 100%|█████████▉| 9609/9657 [03:47<00:01, 38.68it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9608 (out of a total 9657 frames), at time 400.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9609 (out of a total 9657 frames), at time 400.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9610 (out of a total 9657 frames), at time 400.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9611 (out of a total 9657 frames), at time 400.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9612 (out of a total 9657 frames), at time 400.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 100%|█████████▉| 9614/9657 [03:47<00:01, 40.40it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9613 (out of a total 9657 frames), at time 400.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9614 (out of a total 9657 frames), at time 400.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9615 (out of a total 9657 frames), at time 400.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9616 (out of a total 9657 frames), at time 400.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9617 (out of a total 9657 frames), at time 400.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 100%|█████████▉| 9619/9657 [03:47<00:00, 38.69it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9618 (out of a total 9657 frames), at time 400.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9619 (out of a total 9657 frames), at time 400.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9620 (out of a total 9657 frames), at time 400.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9621 (out of a total 9657 frames), at time 400.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9622 (out of a total 9657 frames), at time 400.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 100%|█████████▉| 9624/9657 [03:47<00:00, 39.89it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9623 (out of a total 9657 frames), at time 400.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9624 (out of a total 9657 frames), at time 401.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9625 (out of a total 9657 frames), at time 401.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9626 (out of a total 9657 frames), at time 401.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9627 (out of a total 9657 frames), at time 401.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 100%|█████████▉| 9629/9657 [03:48<00:00, 38.62it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9628 (out of a total 9657 frames), at time 401.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9629 (out of a total 9657 frames), at time 401.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9630 (out of a total 9657 frames), at time 401.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9631 (out of a total 9657 frames), at time 401.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9632 (out of a total 9657 frames), at time 401.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 100%|█████████▉| 9634/9657 [03:48<00:00, 39.79it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9633 (out of a total 9657 frames), at time 401.38/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9634 (out of a total 9657 frames), at time 401.42/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9635 (out of a total 9657 frames), at time 401.46/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9636 (out of a total 9657 frames), at time 401.50/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9637 (out of a total 9657 frames), at time 401.54/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 100%|█████████▉| 9639/9657 [03:48<00:00, 40.44it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9638 (out of a total 9657 frames), at time 401.58/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9639 (out of a total 9657 frames), at time 401.62/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9640 (out of a total 9657 frames), at time 401.67/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9641 (out of a total 9657 frames), at time 401.71/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9642 (out of a total 9657 frames), at time 401.75/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 100%|█████████▉| 9644/9657 [03:48<00:00, 39.25it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9643 (out of a total 9657 frames), at time 401.79/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9644 (out of a total 9657 frames), at time 401.83/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9645 (out of a total 9657 frames), at time 401.88/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9646 (out of a total 9657 frames), at time 401.92/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9647 (out of a total 9657 frames), at time 401.96/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 100%|█████████▉| 9649/9657 [03:48<00:00, 40.36it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9648 (out of a total 9657 frames), at time 402.00/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9649 (out of a total 9657 frames), at time 402.04/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9650 (out of a total 9657 frames), at time 402.08/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9651 (out of a total 9657 frames), at time 402.12/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9652 (out of a total 9657 frames), at time 402.17/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "frame_index: 100%|█████████▉| 9654/9657 [03:48<00:00, 41.41it/s, now=None]/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9653 (out of a total 9657 frames), at time 402.21/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9654 (out of a total 9657 frames), at time 402.25/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9655 (out of a total 9657 frames), at time 402.29/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + "/opt/anaconda3/lib/python3.12/site-packages/moviepy/video/io/ffmpeg_reader.py:178: UserWarning: In file ../data/output/output.mp4, 3175680 bytes wanted but 0 bytes read at frame index 9656 (out of a total 9657 frames), at time 402.33/402.40 sec. Using the last valid frame instead.\n", + " warnings.warn(\n", + " \r" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "MoviePy - Done !\n", + "MoviePy - video ready ../data/output/final_output.mp4\n", + "Video với phụ đề đã được lưu tại: ../data/output/final_output.mp4\n" + ] + } + ], + "source": [ + "add_subtitles_to_video(\"../data/output/output.mp4\", \"../data/output/subtitle.srt\", \"../data/output/final_output.mp4\")" + ] + } + ], + "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.12.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}