diff --git a/src/code/combine.py b/src/code/combine.py new file mode 100644 index 0000000..a3646d4 --- /dev/null +++ b/src/code/combine.py @@ -0,0 +1,37 @@ +import os +from scripts import make_full_clip + +async def combine_all_videos(): + corpora = ["pr", "pk", "mi", "av", "bs"] + + for corpus in corpora: + base_path = os.path.join("../videos", corpus) + offices_path = os.path.join(base_path, "offices") + if not os.path.exists(offices_path): + continue + + for filename in os.listdir(offices_path): + if filename.endswith(".mp4"): + office_path = os.path.join(offices_path, filename) + name, _ = os.path.splitext(filename) + parts = name.split("-") + if len(parts) != 4: + continue + corpus_id, building, floor, office = parts + floor_filename = f"{corpus_id}-{building}-{floor}.mp4" + building_filename = f"{corpus_id}-{building}.mp4" + floor_path = os.path.join(base_path, "floors", floor_filename) + building_path = os.path.join(base_path, "buildings", building_filename) + if os.path.exists(floor_path) and os.path.exists(building_path): + clips = [building_path, floor_path, office_path] + + # ПОЛНОЕ ВИДЕО + await make_full_clip(clips) + + # УРЕЗАННОЕ ВИДЕО + await make_full_clip(clips[1:]) + else: + print(f"Missing files for {filename} in {corpus}") + +import asyncio +asyncio.run(combine_all_videos()) \ No newline at end of file diff --git a/src/code/scripts.py b/src/code/scripts.py index 1606f69..1b58528 100644 --- a/src/code/scripts.py +++ b/src/code/scripts.py @@ -68,23 +68,24 @@ async def make_full_clip(paths): print("Некоторые файлы не найдены") return None - clips = [VideoFileClip(path) for path in paths] # cоздаем список клипов + full_clip_name = f"{paths[-1][21:].replace('.mp4', '')}-{'all' if len(paths) == 3 else 'small'}.mp4" - full_clip = concatenate_videoclips(clips) # cклеиваем все клипы + if not os.path.exists(f"../data/cache/{full_clip_name}"): + clips = [VideoFileClip(path) for path in paths] # cоздаем список клипов - full_clip = full_clip.without_audio() # удаляем звук - full_clip = full_clip.time_transform(lambda t: t * 2).with_duration(full_clip.duration / 2) # ускоряем в 2 раз + full_clip = concatenate_videoclips(clips) # cклеиваем все клипы - full_clip_name = f"{paths[-1][21:].replace('.mp4', '')}-{'all' if len(paths) == 3 else 'small'}.mp4" # генерируем рандомный 5-ти значный ключ - - # рендерим видео с параметрами - full_clip.write_videofile(f"../data/cache/{full_clip_name}", - fps=30, - codec="libx264", - bitrate="1500k", - preset="fast", - ffmpeg_params=["-crf", "23"]) + full_clip = full_clip.without_audio() # удаляем звук + full_clip = full_clip.time_transform(lambda t: t * 2).with_duration(full_clip.duration / 2) # ускоряем в 2 раз + full_clip = full_clip.resized(height=400) + # рендерим видео с параметрами + full_clip.write_videofile(f"../data/cache/{full_clip_name}", + fps=30, + codec="libx264", + bitrate="1500k", + preset="fast", + ffmpeg_params=["-crf", "23"]) return f"../data/cache/{full_clip_name}" diff --git a/src/data/cache/av-4b-04f-04401c-all.mp4 b/src/data/cache/av-4b-04f-04401c-all.mp4 new file mode 100644 index 0000000..4e4c946 Binary files /dev/null and b/src/data/cache/av-4b-04f-04401c-all.mp4 differ diff --git a/src/data/cache/av-4b-04f-04401c-small.mp4 b/src/data/cache/av-4b-04f-04401c-small.mp4 new file mode 100644 index 0000000..5f60b1d Binary files /dev/null and b/src/data/cache/av-4b-04f-04401c-small.mp4 differ diff --git a/src/data/cache/av-4b-04f-04412c-all.mp4 b/src/data/cache/av-4b-04f-04412c-all.mp4 new file mode 100644 index 0000000..f966ea4 Binary files /dev/null and b/src/data/cache/av-4b-04f-04412c-all.mp4 differ diff --git a/src/data/cache/av-4b-04f-04412c-small.mp4 b/src/data/cache/av-4b-04f-04412c-small.mp4 new file mode 100644 index 0000000..42f1ad7 Binary files /dev/null and b/src/data/cache/av-4b-04f-04412c-small.mp4 differ diff --git a/src/data/cache/av-4b-04f-04413c-all.mp4 b/src/data/cache/av-4b-04f-04413c-all.mp4 new file mode 100644 index 0000000..fde3240 Binary files /dev/null and b/src/data/cache/av-4b-04f-04413c-all.mp4 differ diff --git a/src/data/cache/av-4b-04f-04413c-small.mp4 b/src/data/cache/av-4b-04f-04413c-small.mp4 new file mode 100644 index 0000000..c472876 Binary files /dev/null and b/src/data/cache/av-4b-04f-04413c-small.mp4 differ diff --git a/src/data/cache/null.md b/src/data/cache/null.md deleted file mode 100644 index e69de29..0000000 diff --git a/src/data/cache/pr-1b-02f-01231c-all.mp4 b/src/data/cache/pr-1b-02f-01231c-all.mp4 new file mode 100644 index 0000000..dda8804 Binary files /dev/null and b/src/data/cache/pr-1b-02f-01231c-all.mp4 differ diff --git a/src/data/cache/pr-1b-02f-01231c-small.mp4 b/src/data/cache/pr-1b-02f-01231c-small.mp4 new file mode 100644 index 0000000..463705c Binary files /dev/null and b/src/data/cache/pr-1b-02f-01231c-small.mp4 differ diff --git a/src/data/cache/pr-1b-02f-01232c-all.mp4 b/src/data/cache/pr-1b-02f-01232c-all.mp4 new file mode 100644 index 0000000..e9d371d Binary files /dev/null and b/src/data/cache/pr-1b-02f-01232c-all.mp4 differ diff --git a/src/data/cache/pr-1b-02f-01232c-small.mp4 b/src/data/cache/pr-1b-02f-01232c-small.mp4 new file mode 100644 index 0000000..add5e80 Binary files /dev/null and b/src/data/cache/pr-1b-02f-01232c-small.mp4 differ diff --git a/src/data/cache/pr-1b-02f-01233c-all.mp4 b/src/data/cache/pr-1b-02f-01233c-all.mp4 new file mode 100644 index 0000000..d41e25e Binary files /dev/null and b/src/data/cache/pr-1b-02f-01233c-all.mp4 differ diff --git a/src/data/cache/pr-1b-02f-01233c-small.mp4 b/src/data/cache/pr-1b-02f-01233c-small.mp4 new file mode 100644 index 0000000..eb7324a Binary files /dev/null and b/src/data/cache/pr-1b-02f-01233c-small.mp4 differ diff --git a/src/data/cache/pr-1b-02f-01234c-all.mp4 b/src/data/cache/pr-1b-02f-01234c-all.mp4 new file mode 100644 index 0000000..4bbcd32 Binary files /dev/null and b/src/data/cache/pr-1b-02f-01234c-all.mp4 differ diff --git a/src/data/cache/pr-1b-02f-01234c-small.mp4 b/src/data/cache/pr-1b-02f-01234c-small.mp4 new file mode 100644 index 0000000..529964c Binary files /dev/null and b/src/data/cache/pr-1b-02f-01234c-small.mp4 differ diff --git a/src/data/cache/pr-2b-01f-02109c-all.mp4 b/src/data/cache/pr-2b-01f-02109c-all.mp4 new file mode 100644 index 0000000..ffa153e Binary files /dev/null and b/src/data/cache/pr-2b-01f-02109c-all.mp4 differ diff --git a/src/data/cache/pr-2b-01f-02109c-small.mp4 b/src/data/cache/pr-2b-01f-02109c-small.mp4 new file mode 100644 index 0000000..7a80adf Binary files /dev/null and b/src/data/cache/pr-2b-01f-02109c-small.mp4 differ diff --git a/src/data/cache/pr-2b-01f-02110c-all.mp4 b/src/data/cache/pr-2b-01f-02110c-all.mp4 new file mode 100644 index 0000000..0c2dac1 Binary files /dev/null and b/src/data/cache/pr-2b-01f-02110c-all.mp4 differ diff --git a/src/data/cache/pr-2b-01f-02110c-small.mp4 b/src/data/cache/pr-2b-01f-02110c-small.mp4 new file mode 100644 index 0000000..be7d24b Binary files /dev/null and b/src/data/cache/pr-2b-01f-02110c-small.mp4 differ diff --git a/src/data/cache/pr-2b-01f-02116c-all.mp4 b/src/data/cache/pr-2b-01f-02116c-all.mp4 new file mode 100644 index 0000000..f505d2d Binary files /dev/null and b/src/data/cache/pr-2b-01f-02116c-all.mp4 differ diff --git a/src/data/cache/pr-2b-01f-02116c-small.mp4 b/src/data/cache/pr-2b-01f-02116c-small.mp4 new file mode 100644 index 0000000..aa40786 Binary files /dev/null and b/src/data/cache/pr-2b-01f-02116c-small.mp4 differ diff --git a/src/data/cache/pr-2b-01f-2110аc-all.mp4 b/src/data/cache/pr-2b-01f-2110аc-all.mp4 new file mode 100644 index 0000000..0c2dac1 Binary files /dev/null and b/src/data/cache/pr-2b-01f-2110аc-all.mp4 differ diff --git a/src/data/cache/pr-2b-01f-2110аc-small.mp4 b/src/data/cache/pr-2b-01f-2110аc-small.mp4 new file mode 100644 index 0000000..be7d24b Binary files /dev/null and b/src/data/cache/pr-2b-01f-2110аc-small.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02201c-all.mp4 b/src/data/cache/pr-2b-02f-02201c-all.mp4 new file mode 100644 index 0000000..404e327 Binary files /dev/null and b/src/data/cache/pr-2b-02f-02201c-all.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02201c-small.mp4 b/src/data/cache/pr-2b-02f-02201c-small.mp4 new file mode 100644 index 0000000..f5a6381 Binary files /dev/null and b/src/data/cache/pr-2b-02f-02201c-small.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02203c-all.mp4 b/src/data/cache/pr-2b-02f-02203c-all.mp4 new file mode 100644 index 0000000..82d72c5 Binary files /dev/null and b/src/data/cache/pr-2b-02f-02203c-all.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02203c-small.mp4 b/src/data/cache/pr-2b-02f-02203c-small.mp4 new file mode 100644 index 0000000..1791b14 Binary files /dev/null and b/src/data/cache/pr-2b-02f-02203c-small.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02204c-all.mp4 b/src/data/cache/pr-2b-02f-02204c-all.mp4 new file mode 100644 index 0000000..7b030a6 Binary files /dev/null and b/src/data/cache/pr-2b-02f-02204c-all.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02204c-small.mp4 b/src/data/cache/pr-2b-02f-02204c-small.mp4 new file mode 100644 index 0000000..20d85ee Binary files /dev/null and b/src/data/cache/pr-2b-02f-02204c-small.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02205c-all.mp4 b/src/data/cache/pr-2b-02f-02205c-all.mp4 new file mode 100644 index 0000000..361c1eb Binary files /dev/null and b/src/data/cache/pr-2b-02f-02205c-all.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02205c-small.mp4 b/src/data/cache/pr-2b-02f-02205c-small.mp4 new file mode 100644 index 0000000..2c9c726 Binary files /dev/null and b/src/data/cache/pr-2b-02f-02205c-small.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02206c-all.mp4 b/src/data/cache/pr-2b-02f-02206c-all.mp4 new file mode 100644 index 0000000..8db021d Binary files /dev/null and b/src/data/cache/pr-2b-02f-02206c-all.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02206c-small.mp4 b/src/data/cache/pr-2b-02f-02206c-small.mp4 new file mode 100644 index 0000000..b7f1cc7 Binary files /dev/null and b/src/data/cache/pr-2b-02f-02206c-small.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02207c-all.mp4 b/src/data/cache/pr-2b-02f-02207c-all.mp4 new file mode 100644 index 0000000..a73d62a Binary files /dev/null and b/src/data/cache/pr-2b-02f-02207c-all.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02207c-small.mp4 b/src/data/cache/pr-2b-02f-02207c-small.mp4 new file mode 100644 index 0000000..63da425 Binary files /dev/null and b/src/data/cache/pr-2b-02f-02207c-small.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02208c-all.mp4 b/src/data/cache/pr-2b-02f-02208c-all.mp4 new file mode 100644 index 0000000..25aad40 Binary files /dev/null and b/src/data/cache/pr-2b-02f-02208c-all.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02208c-small.mp4 b/src/data/cache/pr-2b-02f-02208c-small.mp4 new file mode 100644 index 0000000..3d3a24c Binary files /dev/null and b/src/data/cache/pr-2b-02f-02208c-small.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02209c-all.mp4 b/src/data/cache/pr-2b-02f-02209c-all.mp4 new file mode 100644 index 0000000..0c099d6 Binary files /dev/null and b/src/data/cache/pr-2b-02f-02209c-all.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02209c-small.mp4 b/src/data/cache/pr-2b-02f-02209c-small.mp4 new file mode 100644 index 0000000..e4d7bc1 Binary files /dev/null and b/src/data/cache/pr-2b-02f-02209c-small.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02210c-all.mp4 b/src/data/cache/pr-2b-02f-02210c-all.mp4 new file mode 100644 index 0000000..ba4bbe3 Binary files /dev/null and b/src/data/cache/pr-2b-02f-02210c-all.mp4 differ diff --git a/src/data/cache/pr-2b-02f-02210c-small.mp4 b/src/data/cache/pr-2b-02f-02210c-small.mp4 new file mode 100644 index 0000000..f4d9764 Binary files /dev/null and b/src/data/cache/pr-2b-02f-02210c-small.mp4 differ diff --git a/src/data/cache/pr-2b-02f-2201мc-all.mp4 b/src/data/cache/pr-2b-02f-2201мc-all.mp4 new file mode 100644 index 0000000..01d478d Binary files /dev/null and b/src/data/cache/pr-2b-02f-2201мc-all.mp4 differ diff --git a/src/data/cache/pr-2b-02f-2201мc-small.mp4 b/src/data/cache/pr-2b-02f-2201мc-small.mp4 new file mode 100644 index 0000000..bb981c2 Binary files /dev/null and b/src/data/cache/pr-2b-02f-2201мc-small.mp4 differ diff --git a/src/data/cache/pr-2b-02f-2202аc-all.mp4 b/src/data/cache/pr-2b-02f-2202аc-all.mp4 new file mode 100644 index 0000000..924f525 Binary files /dev/null and b/src/data/cache/pr-2b-02f-2202аc-all.mp4 differ diff --git a/src/data/cache/pr-2b-02f-2202аc-small.mp4 b/src/data/cache/pr-2b-02f-2202аc-small.mp4 new file mode 100644 index 0000000..a5ca076 Binary files /dev/null and b/src/data/cache/pr-2b-02f-2202аc-small.mp4 differ diff --git a/src/data/cache/pr-2b-02f-2202бc-all.mp4 b/src/data/cache/pr-2b-02f-2202бc-all.mp4 new file mode 100644 index 0000000..398e83a Binary files /dev/null and b/src/data/cache/pr-2b-02f-2202бc-all.mp4 differ diff --git a/src/data/cache/pr-2b-02f-2202бc-small.mp4 b/src/data/cache/pr-2b-02f-2202бc-small.mp4 new file mode 100644 index 0000000..8ba5d3d Binary files /dev/null and b/src/data/cache/pr-2b-02f-2202бc-small.mp4 differ diff --git a/src/data/cache/pr-2b-03f-02303c-all.mp4 b/src/data/cache/pr-2b-03f-02303c-all.mp4 new file mode 100644 index 0000000..777aa0a Binary files /dev/null and b/src/data/cache/pr-2b-03f-02303c-all.mp4 differ diff --git a/src/data/cache/pr-2b-03f-02303c-small.mp4 b/src/data/cache/pr-2b-03f-02303c-small.mp4 new file mode 100644 index 0000000..118f1ab Binary files /dev/null and b/src/data/cache/pr-2b-03f-02303c-small.mp4 differ diff --git a/src/data/cache/pr-2b-03f-02304c-all.mp4 b/src/data/cache/pr-2b-03f-02304c-all.mp4 new file mode 100644 index 0000000..ff20f71 Binary files /dev/null and b/src/data/cache/pr-2b-03f-02304c-all.mp4 differ diff --git a/src/data/cache/pr-2b-03f-02304c-small.mp4 b/src/data/cache/pr-2b-03f-02304c-small.mp4 new file mode 100644 index 0000000..ae3c8d6 Binary files /dev/null and b/src/data/cache/pr-2b-03f-02304c-small.mp4 differ diff --git a/src/data/cache/pr-2b-03f-02305c-all.mp4 b/src/data/cache/pr-2b-03f-02305c-all.mp4 new file mode 100644 index 0000000..14fe9ec Binary files /dev/null and b/src/data/cache/pr-2b-03f-02305c-all.mp4 differ diff --git a/src/data/cache/pr-2b-03f-02305c-small.mp4 b/src/data/cache/pr-2b-03f-02305c-small.mp4 new file mode 100644 index 0000000..73344d5 Binary files /dev/null and b/src/data/cache/pr-2b-03f-02305c-small.mp4 differ diff --git a/src/data/cache/pr-2b-03f-02306c-all.mp4 b/src/data/cache/pr-2b-03f-02306c-all.mp4 new file mode 100644 index 0000000..bab7a34 Binary files /dev/null and b/src/data/cache/pr-2b-03f-02306c-all.mp4 differ diff --git a/src/data/cache/pr-2b-03f-02306c-small.mp4 b/src/data/cache/pr-2b-03f-02306c-small.mp4 new file mode 100644 index 0000000..cce3e33 Binary files /dev/null and b/src/data/cache/pr-2b-03f-02306c-small.mp4 differ diff --git a/src/data/cache/pr-2b-03f-02411c-all.mp4 b/src/data/cache/pr-2b-03f-02411c-all.mp4 new file mode 100644 index 0000000..27ff87c Binary files /dev/null and b/src/data/cache/pr-2b-03f-02411c-all.mp4 differ diff --git a/src/data/cache/pr-2b-03f-02411c-small.mp4 b/src/data/cache/pr-2b-03f-02411c-small.mp4 new file mode 100644 index 0000000..40acf36 Binary files /dev/null and b/src/data/cache/pr-2b-03f-02411c-small.mp4 differ diff --git a/src/data/cache/pr-2b-03f-02413c-all.mp4 b/src/data/cache/pr-2b-03f-02413c-all.mp4 new file mode 100644 index 0000000..3d65c95 Binary files /dev/null and b/src/data/cache/pr-2b-03f-02413c-all.mp4 differ diff --git a/src/data/cache/pr-2b-03f-02413c-small.mp4 b/src/data/cache/pr-2b-03f-02413c-small.mp4 new file mode 100644 index 0000000..f913487 Binary files /dev/null and b/src/data/cache/pr-2b-03f-02413c-small.mp4 differ diff --git a/src/data/cache/pr-2b-04f-02402c-all.mp4 b/src/data/cache/pr-2b-04f-02402c-all.mp4 new file mode 100644 index 0000000..1052550 Binary files /dev/null and b/src/data/cache/pr-2b-04f-02402c-all.mp4 differ diff --git a/src/data/cache/pr-2b-04f-02402c-small.mp4 b/src/data/cache/pr-2b-04f-02402c-small.mp4 new file mode 100644 index 0000000..6ef6db7 Binary files /dev/null and b/src/data/cache/pr-2b-04f-02402c-small.mp4 differ diff --git a/src/data/cache/pr-2b-04f-02403c-all.mp4 b/src/data/cache/pr-2b-04f-02403c-all.mp4 new file mode 100644 index 0000000..1052550 Binary files /dev/null and b/src/data/cache/pr-2b-04f-02403c-all.mp4 differ diff --git a/src/data/cache/pr-2b-04f-02403c-small.mp4 b/src/data/cache/pr-2b-04f-02403c-small.mp4 new file mode 100644 index 0000000..6ef6db7 Binary files /dev/null and b/src/data/cache/pr-2b-04f-02403c-small.mp4 differ diff --git a/src/data/cache/pr-2b-04f-02407c-all.mp4 b/src/data/cache/pr-2b-04f-02407c-all.mp4 new file mode 100644 index 0000000..8fdf947 Binary files /dev/null and b/src/data/cache/pr-2b-04f-02407c-all.mp4 differ diff --git a/src/data/cache/pr-2b-04f-02407c-small.mp4 b/src/data/cache/pr-2b-04f-02407c-small.mp4 new file mode 100644 index 0000000..76cd4af Binary files /dev/null and b/src/data/cache/pr-2b-04f-02407c-small.mp4 differ diff --git a/src/data/cache/pr-2b-04f-02408c-all.mp4 b/src/data/cache/pr-2b-04f-02408c-all.mp4 new file mode 100644 index 0000000..c4dec72 Binary files /dev/null and b/src/data/cache/pr-2b-04f-02408c-all.mp4 differ diff --git a/src/data/cache/pr-2b-04f-02408c-small.mp4 b/src/data/cache/pr-2b-04f-02408c-small.mp4 new file mode 100644 index 0000000..690d485 Binary files /dev/null and b/src/data/cache/pr-2b-04f-02408c-small.mp4 differ diff --git a/src/data/cache/pr-2b-04f-02412c-all.mp4 b/src/data/cache/pr-2b-04f-02412c-all.mp4 new file mode 100644 index 0000000..e38ef41 Binary files /dev/null and b/src/data/cache/pr-2b-04f-02412c-all.mp4 differ diff --git a/src/data/cache/pr-2b-04f-02412c-small.mp4 b/src/data/cache/pr-2b-04f-02412c-small.mp4 new file mode 100644 index 0000000..9bdb4d6 Binary files /dev/null and b/src/data/cache/pr-2b-04f-02412c-small.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02501c-all.mp4 b/src/data/cache/pr-2b-05f-02501c-all.mp4 new file mode 100644 index 0000000..c74d49e Binary files /dev/null and b/src/data/cache/pr-2b-05f-02501c-all.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02501c-small.mp4 b/src/data/cache/pr-2b-05f-02501c-small.mp4 new file mode 100644 index 0000000..fcd3894 Binary files /dev/null and b/src/data/cache/pr-2b-05f-02501c-small.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02502c-all.mp4 b/src/data/cache/pr-2b-05f-02502c-all.mp4 new file mode 100644 index 0000000..8c7e14a Binary files /dev/null and b/src/data/cache/pr-2b-05f-02502c-all.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02502c-small.mp4 b/src/data/cache/pr-2b-05f-02502c-small.mp4 new file mode 100644 index 0000000..cb0704e Binary files /dev/null and b/src/data/cache/pr-2b-05f-02502c-small.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02503c-all.mp4 b/src/data/cache/pr-2b-05f-02503c-all.mp4 new file mode 100644 index 0000000..66fc9cb Binary files /dev/null and b/src/data/cache/pr-2b-05f-02503c-all.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02503c-small.mp4 b/src/data/cache/pr-2b-05f-02503c-small.mp4 new file mode 100644 index 0000000..c0fcb0b Binary files /dev/null and b/src/data/cache/pr-2b-05f-02503c-small.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02505c-all.mp4 b/src/data/cache/pr-2b-05f-02505c-all.mp4 new file mode 100644 index 0000000..6df758a Binary files /dev/null and b/src/data/cache/pr-2b-05f-02505c-all.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02505c-small.mp4 b/src/data/cache/pr-2b-05f-02505c-small.mp4 new file mode 100644 index 0000000..be200d5 Binary files /dev/null and b/src/data/cache/pr-2b-05f-02505c-small.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02506c-all.mp4 b/src/data/cache/pr-2b-05f-02506c-all.mp4 new file mode 100644 index 0000000..a31f7d7 Binary files /dev/null and b/src/data/cache/pr-2b-05f-02506c-all.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02506c-small.mp4 b/src/data/cache/pr-2b-05f-02506c-small.mp4 new file mode 100644 index 0000000..ec59165 Binary files /dev/null and b/src/data/cache/pr-2b-05f-02506c-small.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02507c-all.mp4 b/src/data/cache/pr-2b-05f-02507c-all.mp4 new file mode 100644 index 0000000..723e40b Binary files /dev/null and b/src/data/cache/pr-2b-05f-02507c-all.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02507c-small.mp4 b/src/data/cache/pr-2b-05f-02507c-small.mp4 new file mode 100644 index 0000000..d948fd2 Binary files /dev/null and b/src/data/cache/pr-2b-05f-02507c-small.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02552c-all.mp4 b/src/data/cache/pr-2b-05f-02552c-all.mp4 new file mode 100644 index 0000000..ea47a2a Binary files /dev/null and b/src/data/cache/pr-2b-05f-02552c-all.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02552c-small.mp4 b/src/data/cache/pr-2b-05f-02552c-small.mp4 new file mode 100644 index 0000000..84cc486 Binary files /dev/null and b/src/data/cache/pr-2b-05f-02552c-small.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02552c.-all.mp4 b/src/data/cache/pr-2b-05f-02552c.-all.mp4 new file mode 100644 index 0000000..1472206 Binary files /dev/null and b/src/data/cache/pr-2b-05f-02552c.-all.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02552c.-small.mp4 b/src/data/cache/pr-2b-05f-02552c.-small.mp4 new file mode 100644 index 0000000..281c8be Binary files /dev/null and b/src/data/cache/pr-2b-05f-02552c.-small.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02553c-all.mp4 b/src/data/cache/pr-2b-05f-02553c-all.mp4 new file mode 100644 index 0000000..fe33c7a Binary files /dev/null and b/src/data/cache/pr-2b-05f-02553c-all.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02553c-small.mp4 b/src/data/cache/pr-2b-05f-02553c-small.mp4 new file mode 100644 index 0000000..bd76cb9 Binary files /dev/null and b/src/data/cache/pr-2b-05f-02553c-small.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02554c-all.mp4 b/src/data/cache/pr-2b-05f-02554c-all.mp4 new file mode 100644 index 0000000..5813c1a Binary files /dev/null and b/src/data/cache/pr-2b-05f-02554c-all.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02554c-small.mp4 b/src/data/cache/pr-2b-05f-02554c-small.mp4 new file mode 100644 index 0000000..62a81c6 Binary files /dev/null and b/src/data/cache/pr-2b-05f-02554c-small.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02555c-all.mp4 b/src/data/cache/pr-2b-05f-02555c-all.mp4 new file mode 100644 index 0000000..44b1dfe Binary files /dev/null and b/src/data/cache/pr-2b-05f-02555c-all.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02555c-small.mp4 b/src/data/cache/pr-2b-05f-02555c-small.mp4 new file mode 100644 index 0000000..ce6911a Binary files /dev/null and b/src/data/cache/pr-2b-05f-02555c-small.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02557c-all.mp4 b/src/data/cache/pr-2b-05f-02557c-all.mp4 new file mode 100644 index 0000000..6c5a450 Binary files /dev/null and b/src/data/cache/pr-2b-05f-02557c-all.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02557c-small.mp4 b/src/data/cache/pr-2b-05f-02557c-small.mp4 new file mode 100644 index 0000000..7ae9e73 Binary files /dev/null and b/src/data/cache/pr-2b-05f-02557c-small.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02558c-all.mp4 b/src/data/cache/pr-2b-05f-02558c-all.mp4 new file mode 100644 index 0000000..d94617b Binary files /dev/null and b/src/data/cache/pr-2b-05f-02558c-all.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02558c-small.mp4 b/src/data/cache/pr-2b-05f-02558c-small.mp4 new file mode 100644 index 0000000..83e149f Binary files /dev/null and b/src/data/cache/pr-2b-05f-02558c-small.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02559c-all.mp4 b/src/data/cache/pr-2b-05f-02559c-all.mp4 new file mode 100644 index 0000000..a53c9e2 Binary files /dev/null and b/src/data/cache/pr-2b-05f-02559c-all.mp4 differ diff --git a/src/data/cache/pr-2b-05f-02559c-small.mp4 b/src/data/cache/pr-2b-05f-02559c-small.mp4 new file mode 100644 index 0000000..074df24 Binary files /dev/null and b/src/data/cache/pr-2b-05f-02559c-small.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02605c-all.mp4 b/src/data/cache/pr-2b-06f-02605c-all.mp4 new file mode 100644 index 0000000..0fed2e2 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02605c-all.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02605c-small.mp4 b/src/data/cache/pr-2b-06f-02605c-small.mp4 new file mode 100644 index 0000000..f13c516 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02605c-small.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02606c-all.mp4 b/src/data/cache/pr-2b-06f-02606c-all.mp4 new file mode 100644 index 0000000..33dbd88 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02606c-all.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02606c-small.mp4 b/src/data/cache/pr-2b-06f-02606c-small.mp4 new file mode 100644 index 0000000..ec5b5c5 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02606c-small.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02608c-all.mp4 b/src/data/cache/pr-2b-06f-02608c-all.mp4 new file mode 100644 index 0000000..91c6f6f Binary files /dev/null and b/src/data/cache/pr-2b-06f-02608c-all.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02608c-small.mp4 b/src/data/cache/pr-2b-06f-02608c-small.mp4 new file mode 100644 index 0000000..df89467 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02608c-small.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02609c-all.mp4 b/src/data/cache/pr-2b-06f-02609c-all.mp4 new file mode 100644 index 0000000..237762c Binary files /dev/null and b/src/data/cache/pr-2b-06f-02609c-all.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02609c-small.mp4 b/src/data/cache/pr-2b-06f-02609c-small.mp4 new file mode 100644 index 0000000..3bc4de0 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02609c-small.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02610c-all.mp4 b/src/data/cache/pr-2b-06f-02610c-all.mp4 new file mode 100644 index 0000000..c6c1b49 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02610c-all.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02610c-small.mp4 b/src/data/cache/pr-2b-06f-02610c-small.mp4 new file mode 100644 index 0000000..20dd327 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02610c-small.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02611c-all.mp4 b/src/data/cache/pr-2b-06f-02611c-all.mp4 new file mode 100644 index 0000000..eef2d52 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02611c-all.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02611c-small.mp4 b/src/data/cache/pr-2b-06f-02611c-small.mp4 new file mode 100644 index 0000000..d7c9002 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02611c-small.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02662c-all.mp4 b/src/data/cache/pr-2b-06f-02662c-all.mp4 new file mode 100644 index 0000000..d6430a6 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02662c-all.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02662c-small.mp4 b/src/data/cache/pr-2b-06f-02662c-small.mp4 new file mode 100644 index 0000000..eb10169 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02662c-small.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02663c-all.mp4 b/src/data/cache/pr-2b-06f-02663c-all.mp4 new file mode 100644 index 0000000..a21cdf0 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02663c-all.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02663c-small.mp4 b/src/data/cache/pr-2b-06f-02663c-small.mp4 new file mode 100644 index 0000000..f893039 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02663c-small.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02664c-all.mp4 b/src/data/cache/pr-2b-06f-02664c-all.mp4 new file mode 100644 index 0000000..0f87a54 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02664c-all.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02664c-small.mp4 b/src/data/cache/pr-2b-06f-02664c-small.mp4 new file mode 100644 index 0000000..9730133 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02664c-small.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02668c-all.mp4 b/src/data/cache/pr-2b-06f-02668c-all.mp4 new file mode 100644 index 0000000..3680615 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02668c-all.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02668c-small.mp4 b/src/data/cache/pr-2b-06f-02668c-small.mp4 new file mode 100644 index 0000000..1db2c07 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02668c-small.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02669c-all.mp4 b/src/data/cache/pr-2b-06f-02669c-all.mp4 new file mode 100644 index 0000000..7d43a85 Binary files /dev/null and b/src/data/cache/pr-2b-06f-02669c-all.mp4 differ diff --git a/src/data/cache/pr-2b-06f-02669c-small.mp4 b/src/data/cache/pr-2b-06f-02669c-small.mp4 new file mode 100644 index 0000000..01f926f Binary files /dev/null and b/src/data/cache/pr-2b-06f-02669c-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02802c-all.mp4 b/src/data/cache/pr-2b-08f-02802c-all.mp4 new file mode 100644 index 0000000..e3e6fe0 Binary files /dev/null and b/src/data/cache/pr-2b-08f-02802c-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02802c-small.mp4 b/src/data/cache/pr-2b-08f-02802c-small.mp4 new file mode 100644 index 0000000..ac96b61 Binary files /dev/null and b/src/data/cache/pr-2b-08f-02802c-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02803c-all.mp4 b/src/data/cache/pr-2b-08f-02803c-all.mp4 new file mode 100644 index 0000000..7ce34c6 Binary files /dev/null and b/src/data/cache/pr-2b-08f-02803c-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02803c-small.mp4 b/src/data/cache/pr-2b-08f-02803c-small.mp4 new file mode 100644 index 0000000..ec2e39c Binary files /dev/null and b/src/data/cache/pr-2b-08f-02803c-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02804c-all.mp4 b/src/data/cache/pr-2b-08f-02804c-all.mp4 new file mode 100644 index 0000000..b0e721c Binary files /dev/null and b/src/data/cache/pr-2b-08f-02804c-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02804c-small.mp4 b/src/data/cache/pr-2b-08f-02804c-small.mp4 new file mode 100644 index 0000000..358289f Binary files /dev/null and b/src/data/cache/pr-2b-08f-02804c-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02806c-all.mp4 b/src/data/cache/pr-2b-08f-02806c-all.mp4 new file mode 100644 index 0000000..bfc5dad Binary files /dev/null and b/src/data/cache/pr-2b-08f-02806c-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02806c-small.mp4 b/src/data/cache/pr-2b-08f-02806c-small.mp4 new file mode 100644 index 0000000..6fddc78 Binary files /dev/null and b/src/data/cache/pr-2b-08f-02806c-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02808c-all.mp4 b/src/data/cache/pr-2b-08f-02808c-all.mp4 new file mode 100644 index 0000000..40a9e7b Binary files /dev/null and b/src/data/cache/pr-2b-08f-02808c-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02808c-small.mp4 b/src/data/cache/pr-2b-08f-02808c-small.mp4 new file mode 100644 index 0000000..c5c5f83 Binary files /dev/null and b/src/data/cache/pr-2b-08f-02808c-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02810c-all.mp4 b/src/data/cache/pr-2b-08f-02810c-all.mp4 new file mode 100644 index 0000000..1576535 Binary files /dev/null and b/src/data/cache/pr-2b-08f-02810c-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02810c-small.mp4 b/src/data/cache/pr-2b-08f-02810c-small.mp4 new file mode 100644 index 0000000..7125fa1 Binary files /dev/null and b/src/data/cache/pr-2b-08f-02810c-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02811c-all.mp4 b/src/data/cache/pr-2b-08f-02811c-all.mp4 new file mode 100644 index 0000000..592b169 Binary files /dev/null and b/src/data/cache/pr-2b-08f-02811c-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02811c-small.mp4 b/src/data/cache/pr-2b-08f-02811c-small.mp4 new file mode 100644 index 0000000..301c60e Binary files /dev/null and b/src/data/cache/pr-2b-08f-02811c-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02812c-all.mp4 b/src/data/cache/pr-2b-08f-02812c-all.mp4 new file mode 100644 index 0000000..9f13b8b Binary files /dev/null and b/src/data/cache/pr-2b-08f-02812c-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02812c-small.mp4 b/src/data/cache/pr-2b-08f-02812c-small.mp4 new file mode 100644 index 0000000..039c24c Binary files /dev/null and b/src/data/cache/pr-2b-08f-02812c-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02813c-all.mp4 b/src/data/cache/pr-2b-08f-02813c-all.mp4 new file mode 100644 index 0000000..b7020f0 Binary files /dev/null and b/src/data/cache/pr-2b-08f-02813c-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02813c-small.mp4 b/src/data/cache/pr-2b-08f-02813c-small.mp4 new file mode 100644 index 0000000..e51e213 Binary files /dev/null and b/src/data/cache/pr-2b-08f-02813c-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02814c-all.mp4 b/src/data/cache/pr-2b-08f-02814c-all.mp4 new file mode 100644 index 0000000..4ac53b4 Binary files /dev/null and b/src/data/cache/pr-2b-08f-02814c-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02814c-small.mp4 b/src/data/cache/pr-2b-08f-02814c-small.mp4 new file mode 100644 index 0000000..9a953db Binary files /dev/null and b/src/data/cache/pr-2b-08f-02814c-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02816c-all.mp4 b/src/data/cache/pr-2b-08f-02816c-all.mp4 new file mode 100644 index 0000000..31b6843 Binary files /dev/null and b/src/data/cache/pr-2b-08f-02816c-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-02816c-small.mp4 b/src/data/cache/pr-2b-08f-02816c-small.mp4 new file mode 100644 index 0000000..b43a0c2 Binary files /dev/null and b/src/data/cache/pr-2b-08f-02816c-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2802аc-all.mp4 b/src/data/cache/pr-2b-08f-2802аc-all.mp4 new file mode 100644 index 0000000..1eabfd0 Binary files /dev/null and b/src/data/cache/pr-2b-08f-2802аc-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2802аc-small.mp4 b/src/data/cache/pr-2b-08f-2802аc-small.mp4 new file mode 100644 index 0000000..cd562cc Binary files /dev/null and b/src/data/cache/pr-2b-08f-2802аc-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2814аc-all.mp4 b/src/data/cache/pr-2b-08f-2814аc-all.mp4 new file mode 100644 index 0000000..091f36c Binary files /dev/null and b/src/data/cache/pr-2b-08f-2814аc-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2814аc-small.mp4 b/src/data/cache/pr-2b-08f-2814аc-small.mp4 new file mode 100644 index 0000000..749c295 Binary files /dev/null and b/src/data/cache/pr-2b-08f-2814аc-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2815аc-all.mp4 b/src/data/cache/pr-2b-08f-2815аc-all.mp4 new file mode 100644 index 0000000..a052027 Binary files /dev/null and b/src/data/cache/pr-2b-08f-2815аc-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2815аc-small.mp4 b/src/data/cache/pr-2b-08f-2815аc-small.mp4 new file mode 100644 index 0000000..18d9724 Binary files /dev/null and b/src/data/cache/pr-2b-08f-2815аc-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2815бc-all.mp4 b/src/data/cache/pr-2b-08f-2815бc-all.mp4 new file mode 100644 index 0000000..ee93b29 Binary files /dev/null and b/src/data/cache/pr-2b-08f-2815бc-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2815бc-small.mp4 b/src/data/cache/pr-2b-08f-2815бc-small.mp4 new file mode 100644 index 0000000..978dc42 Binary files /dev/null and b/src/data/cache/pr-2b-08f-2815бc-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2815вc-all.mp4 b/src/data/cache/pr-2b-08f-2815вc-all.mp4 new file mode 100644 index 0000000..1a90f78 Binary files /dev/null and b/src/data/cache/pr-2b-08f-2815вc-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2815вc-small.mp4 b/src/data/cache/pr-2b-08f-2815вc-small.mp4 new file mode 100644 index 0000000..51006ec Binary files /dev/null and b/src/data/cache/pr-2b-08f-2815вc-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2815гc-all.mp4 b/src/data/cache/pr-2b-08f-2815гc-all.mp4 new file mode 100644 index 0000000..1984efd Binary files /dev/null and b/src/data/cache/pr-2b-08f-2815гc-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2815гc-small.mp4 b/src/data/cache/pr-2b-08f-2815гc-small.mp4 new file mode 100644 index 0000000..895db96 Binary files /dev/null and b/src/data/cache/pr-2b-08f-2815гc-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2816бc-all.mp4 b/src/data/cache/pr-2b-08f-2816бc-all.mp4 new file mode 100644 index 0000000..a971fd8 Binary files /dev/null and b/src/data/cache/pr-2b-08f-2816бc-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2816бc-small.mp4 b/src/data/cache/pr-2b-08f-2816бc-small.mp4 new file mode 100644 index 0000000..9a4d9d8 Binary files /dev/null and b/src/data/cache/pr-2b-08f-2816бc-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2817аc-all.mp4 b/src/data/cache/pr-2b-08f-2817аc-all.mp4 new file mode 100644 index 0000000..f403675 Binary files /dev/null and b/src/data/cache/pr-2b-08f-2817аc-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2817аc-small.mp4 b/src/data/cache/pr-2b-08f-2817аc-small.mp4 new file mode 100644 index 0000000..763a276 Binary files /dev/null and b/src/data/cache/pr-2b-08f-2817аc-small.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2817бc-all.mp4 b/src/data/cache/pr-2b-08f-2817бc-all.mp4 new file mode 100644 index 0000000..eefee70 Binary files /dev/null and b/src/data/cache/pr-2b-08f-2817бc-all.mp4 differ diff --git a/src/data/cache/pr-2b-08f-2817бc-small.mp4 b/src/data/cache/pr-2b-08f-2817бc-small.mp4 new file mode 100644 index 0000000..d71d7ae Binary files /dev/null and b/src/data/cache/pr-2b-08f-2817бc-small.mp4 differ