diff --git "a/sessions/2D392E/DANH_Ch\341\273\221t _REN VIDEO.py" "b/sessions/2D392E/DANH_Ch\341\273\221t _REN VIDEO.py" new file mode 100644 index 0000000000000000000000000000000000000000..a603b172ff80ca36eae13a7cbeaf8c74ff402698 --- /dev/null +++ "b/sessions/2D392E/DANH_Ch\341\273\221t _REN VIDEO.py" @@ -0,0 +1,5735 @@ +# -- coding: utf-8 -- +import tkinter as tk +from tkinter import ttk, filedialog, messagebox, scrolledtext, colorchooser +import os +import cv2 +import numpy as np +import threading +import subprocess +import queue +import math +import sys +import json +import re +import shutil +import time +import uuid +import gc +import random +import glob +import tempfile +from datetime import datetime +from concurrent.futures import ThreadPoolExecutor + +# ─── COLAB / LINUX COMPATIBILITY PATCH ─────────────────────────────────────── +# Tự động detect môi trường: nếu chạy trên Linux (Colab), tắt CREATE_NO_WINDOW +_IS_WINDOWS = os.name == 'nt' +_SW = subprocess.CREATE_NO_WINDOW if _IS_WINDOWS else 0 +# Ghi đè CREATE_NO_WINDOW trên subprocess module để toàn bộ code cũ dùng đúng +if not _IS_WINDOWS: + subprocess.CREATE_NO_WINDOW = 0 +# ───────────────────────────────────────────────────────────────────────────── + +# --- KIỂM TRA THƯ VIỆN SUBTITLE --- +try: + import pysubs2 + HAS_PYSUBS2 = True +except ImportError: + HAS_PYSUBS2 = False + +# --- CẤU HÌNH MẶC ĐỊNH --- +DEFAULT_TEMP_DIR = os.path.join(tempfile.gettempdir(), "ProLoop_FFMPEG_Core") +GLOBAL_CONFIG_FILE = "pro_loop_global_settings.json" +FFMPEG_EXE_NAME = "ffmpeg.exe" if os.name == 'nt' else "ffmpeg" +FFPROBE_EXE_NAME = "ffprobe.exe" if os.name == 'nt' else "ffprobe" + +# ================================================================= +# HELPER: FFMPEG MOTION FILTER GENERATOR +# ================================================================= +def generate_ffmpeg_filter_complex(motion_type, w, h, duration, fps, overlay_path, overlay_mode, opacity, cycle_sec, is_video_source=False, fast_mode=False): + # fast_mode=True: giảm scale_factor, bỏ tblend → 2-3x nhanh hơn, chất lượng đủ cho intermediate + scale_factor = 2 if fast_mode else 4 + w_high, h_high = w * scale_factor, h * scale_factor + frames = max(1, int(duration * fps)) + + bg_chain = "" + + if is_video_source: + sine_wave = f"(sin(t*2*PI/{cycle_sec}-PI/2)+1)/2" + x_expr = "'(iw-ow)/2'" + y_expr = "'(ih-oh)/2'" + + if motion_type == "Zoom In": + x_expr = f"(iw-ow)/2 + (iw-ow)/8*sin(t*2*PI/{cycle_sec})" + y_expr = f"(ih-oh)/2" + elif motion_type == "Pan Left->Right": + x_expr = f"(iw-ow)*{sine_wave}" + y_expr = f"(ih-oh)/2" + elif motion_type == "Pan Right->Left": + x_expr = f"(iw-ow)*(1-{sine_wave})" + y_expr = f"(ih-oh)/2" + elif motion_type == "Camera Shake": + x_expr = f"(iw-ow)/2 + (iw-ow)/6*sin(t*12*PI/{cycle_sec})" + y_expr = f"(ih-oh)/2 + (ih-oh)/8*cos(t*14*PI/{cycle_sec})" + elif motion_type == "Gentle Float": + x_expr = f"(iw-ow)/2 + (iw-ow)/12*sin(t*4*PI/{cycle_sec})" + y_expr = f"(ih-oh)/2 + (ih-oh)/14*cos(t*6*PI/{cycle_sec})" + elif motion_type == "Breathing" or motion_type == "Deep Breathe (Focus)": + x_expr = f"(iw-ow)/2" + y_expr = f"(ih-oh)/2" + elif motion_type == "Drone Hover (Hình số 8)": + x_expr = f"(iw-ow)/2 + (iw-ow)/10*sin(t*2*PI/{cycle_sec})" + y_expr = f"(ih-oh)/2 + (ih-oh)/20*sin(t*4*PI/{cycle_sec})" + elif motion_type == "Ken Burns (Zoom Pan)": + x_expr = f"(iw-ow)/2 + (iw-ow)/10*sin(t*2*PI/{cycle_sec})" + y_expr = f"(ih-oh)/2 + (ih-oh)/10*cos(t*2*PI/{cycle_sec})" + + scale_h = int(h * 1.3) + if motion_type == "Camera Shake": + scale_h = int(h * 1.4) + elif motion_type == "Breathing" or motion_type == "Deep Breathe (Focus)": + scale_h = int(h * 1.15) + x_expr = f"(iw-ow)/2 + (iw-ow)/20*sin(t*4*PI/{cycle_sec})" + y_expr = f"(ih-oh)/2 + (ih-oh)/25*cos(t*4*PI/{cycle_sec})" + elif motion_type in ["Drone Hover (Hình số 8)", "Ken Burns (Zoom Pan)"]: + scale_h = int(h * 1.3) + + bg_chain = f"[0:v]scale=-2:{scale_h}:flags=lanczos,crop={w}:{h}:{x_expr}:{y_expr},setsar=1[bg];" + else: + # --- CINEMATIC SMOOTHING TRICK (Học từ nghĩa_ok) --- + # Render ở FPS*2 rồi tblend=average → khử rung, chuyển động mượt hơn hẳn + Z_FPS = fps * 2 + Z_D = frames * 2 + norm_cmd = f"scale={w_high}:{h_high}:force_original_aspect_ratio=increase:flags=lanczos,crop={w_high}:{h_high},setsar=1" + m_cmd = "" + oscillator = f"(sin(time*2*PI/{cycle_sec}-PI/2)+1)/2" + + if motion_type == "Zoom In": + # FIX: 0.05 thay vì 0.5 — amplitude 50% gây glitch/cắt xén ảnh + m_cmd = f"z='1.0+0.05*{oscillator}':x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'" + elif motion_type == "Zoom Out": + inv_osc = f"(1-{oscillator})" + m_cmd = f"z='1.0+0.05*{inv_osc}':x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'" + elif "Pan Left" in motion_type: # FIX: substring match, không dùng == + m_cmd = f"z='1.05':x='(iw-iw/zoom)*{oscillator}':y='(ih-ih/zoom)/2'" + elif "Pan Right" in motion_type: # FIX: substring match + inv_osc = f"(1-{oscillator})" + m_cmd = f"z='1.05':x='(iw-iw/zoom)*{inv_osc}':y='(ih-ih/zoom)/2'" + elif "Bồng Bềnh" in motion_type or "Romantic" in motion_type: + z_expr = f"1.0+0.015*(1-cos(time*2*PI/{cycle_sec}))" + x_expr = f"iw/2-(iw/zoom/2) + 5*sin(time*2*PI/{cycle_sec})" + y_expr = f"ih/2-(ih/zoom/2) + 5*cos(time*2*PI/{cycle_sec})" + m_cmd = f"z='{z_expr}':x='{x_expr}':y='{y_expr}'" + else: # Default Cinematic Pan/Zoom — KHÔNG BAO GIỜ STATIC + # FIX: Trước đây z='1.001' → ảnh tĩnh. Giờ luôn có chuyển động nhẹ điện ảnh + m_cmd = f"z='1.01+0.02*{oscillator}':x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'" + + bg_chain = ( + f"[0:v]{norm_cmd}," + f"zoompan={m_cmd}:d={Z_D}:s={w}x{h}:fps={Z_FPS}," + + ("" if fast_mode else "tblend=all_mode=average,") # fast_mode: bỏ tblend → tiết kiệm ~25% CPU + + f"fps={fps}[bg];" + ) + + if not overlay_path: + return f"{bg_chain}[bg]copy[v]" + + ovl_prep = f"[1:v]scale={w}:{h}:force_original_aspect_ratio=decrease,pad={w}:{h}:(ow-iw)/2:(oh-ih)/2[ovl_sized];" + ovl_chain = "" + merge_cmd = "" + + if overlay_mode == "Chroma Key Green": + ovl_chain = f"[ovl_sized]chromakey=0x00FF00:0.25:0.0,despill=green,colorchannelmixer=aa={opacity}[ovl_clean];" + merge_cmd = "[bg][ovl_clean]overlay=0:0:shortest=1[v]" + elif overlay_mode in["Screen", "Multiply", "Overlay", "SoftLight"]: + blend_mode = overlay_mode.lower() + if blend_mode == "screen": blend_mode = "addition" # Tối ưu thuật toán blend: Addition nhẹ hơn Screen rất nhiều + ovl_chain = f"[ovl_sized]colorchannelmixer=aa={opacity}[ovl_ready];" + merge_cmd = f"[bg][ovl_ready]blend=all_mode={blend_mode}:shortest=1[v]" + else: # Normal + ovl_chain = f"[ovl_sized]colorchannelmixer=aa={opacity}[ovl_clean];" + merge_cmd = "[bg][ovl_clean]overlay=0:0:shortest=1[v]" + + full_filter = bg_chain + ovl_prep + ovl_chain + merge_cmd + return full_filter + +# ================================================================= +# HELPER: OVERLAY SEGMENT GENERATOR (Chia đoạn overlay ngẫu nhiên) +# ================================================================= +def generate_overlay_segments(total_duration_sec, overlay_folder, min_minutes=10, max_minutes=30): + """Chia video thành các đoạn ngẫu nhiên, mỗi đoạn gắn 1 overlay khác nhau. + VD: Video 60 phút → 3 đoạn (20+25+15) → 3 overlay files khác nhau.""" + if not overlay_folder or not os.path.isdir(overlay_folder): + return [] + + ovl_files = [os.path.join(overlay_folder, f) for f in os.listdir(overlay_folder) + if f.lower().endswith(('.mp4', '.mov', '.avi', '.mkv'))] + if not ovl_files: + return [] + + min_sec = max(60, min_minutes * 60) # Tối thiểu 1 phút + max_sec = max(min_sec, max_minutes * 60) + + # Nếu video ngắn hơn min_sec → 1 đoạn duy nhất + if total_duration_sec <= min_sec: + return [(0, total_duration_sec, random.choice(ovl_files))] + + segments = [] + current_time = 0 + used_recent = [] # Tránh overlay trùng liên tiếp + + while current_time < total_duration_sec: + remaining = total_duration_sec - current_time + if remaining <= min_sec * 1.2: # Đoạn cuối: gộp nếu còn ít + seg_dur = remaining + else: + seg_dur = random.uniform(min_sec, min(max_sec, remaining)) + + # Chọn overlay không trùng đoạn trước (nếu có đủ file) + available = [f for f in ovl_files if f not in used_recent] + if not available: + available = ovl_files + used_recent = [] + + chosen = random.choice(available) + used_recent.append(chosen) + if len(used_recent) > min(3, len(ovl_files) - 1): + used_recent.pop(0) + + segments.append((current_time, current_time + seg_dur, chosen)) + current_time += seg_dur + + return segments + +def generate_overlay_concat_file(total_duration_sec, overlay_folder, min_minutes, max_minutes, task_temp, ffprobe_exe, get_dur_func): + """ Tạo file text cho thuật toán Concat Demuxer thay vì chèn N bộ mã nguồn overlay gây crash VRAM. """ + segments = generate_overlay_segments(total_duration_sec, overlay_folder, min_minutes, max_minutes) + if not segments: return None + + concat_path = os.path.join(task_temp, "ovl_concat.txt") + import math + try: + with open(concat_path, 'w', encoding='utf-8') as f: + for (start, end, path) in segments: + seg_dur = end - start + ovl_dur = get_dur_func(ffprobe_exe, path) + if ovl_dur <= 0: ovl_dur = 10.0 + # Safety factor x3: generate gấp 3 lần số loop cần thiết. + # Lý do: stream_loop -1 với concat demuxer không loop vô hạn trên mọi phiên bản FFmpeg. + # Nếu concat file hết trước audio → blend filter dừng sớm → video thiếu thời lượng. + # Với x3, concat file luôn dài gấp 3 lần audio → đảm bảo không bao giờ hết sớm. + safety_loops = 3 + loops = int(math.ceil(seg_dur / ovl_dur)) * safety_loops + safe_path = path.replace(chr(92), '/').replace("'", "'\\''") # escape cho Linux/concat + for _ in range(loops): + f.write(f"file '{safe_path}'\n") + return concat_path + except Exception as e: + print(f"Error creating overlay concat: {e}") + return None + +# Tất cả effect dùng thuần OpenCV +INTRO_EFFECTS_LIST = [ + "Hyper Zoom In", "Hyper Zoom Out", "Cinematic Dolly In", "Cinematic Dolly Out", + "Deep Focus Pull", "Snappy Zoom In", "Snappy Zoom Out", + "Perspective Spin 180", "Perspective Spin 360", "Spiral In", "Spiral Out", + "Vertigo Spin", "Inception Tilt", "Whip Pan Left", "Whip Pan Right", "Whip Pan Up", "Whip Pan Down", + "Slide Swing Left", "Slide Swing Right", "Slide Swing Up", "Slide Swing Down", + "Blur Reveal", "Zoom Blur Reveal", "Spin Blur Reveal", "Pendulum Swing" +] + +# ================================================================= +# CLASS: SUBTITLE CANVAS EDITOR +# ================================================================= +class SubtitleCanvasEditor(tk.Toplevel): + def __init__(self, parent, current_settings, target_w, target_h): + super().__init__(parent) + self.transient(parent) + self.grab_set() + self.title("Draw Subtitle Bounding Box") + + self.target_w = target_w; self.target_h = target_h + self.current_settings = current_settings + self.result_bbox = None + + self.scale_factor = min(1200 / target_w, 800 / target_h) if target_w > 1200 or target_h > 800 else 1.0 + self.canvas_w = int(target_w * self.scale_factor) + self.canvas_h = int(target_h * self.scale_factor) + + self.geometry(f"{self.canvas_w + 20}x{self.canvas_h + 80}") + + self.canvas = tk.Canvas(self, width=self.canvas_w, height=self.canvas_h, bg="black", cursor="cross") + self.canvas.pack(pady=10) + + self.rect_id = None + self.start_x = None; self.start_y = None + + self.setup_grid() + self.canvas.bind("", self.on_press) + self.canvas.bind("", self.on_drag) + self.canvas.bind("", self.on_release) + + btn_frame = ttk.Frame(self) + btn_frame.pack(fill=tk.X, padx=10, pady=5) + ttk.Button(btn_frame, text="Lưu Khung Bounding Box (OK)", command=self.save_and_close).pack(side=tk.RIGHT, padx=5) + ttk.Button(btn_frame, text="Xóa Khung", command=self.clear_box).pack(side=tk.RIGHT, padx=5) + + if "bounding_box" in current_settings and len(current_settings["bounding_box"]) == 4: + x1, y1, x2, y2 = current_settings["bounding_box"] + self.draw_scaled_rect(x1, y1, x2, y2) + + def setup_grid(self): + for i in range(0, self.canvas_w, 50): self.canvas.create_line([(i, 0), (i, self.canvas_h)], fill="#333333", dash=(2, 2)) + for i in range(0, self.canvas_h, 50): self.canvas.create_line([(0, i), (self.canvas_w, i)], fill="#333333", dash=(2, 2)) + self.canvas.create_text(self.canvas_w//2, self.canvas_h//2, text=f"Bản nháp Video {self.target_w}x{self.target_h}\n(Kéo chuột để vẽ vùng hiển thị Subtitle)", fill="#555555", font=("Arial", 16), justify=tk.CENTER) + + def on_press(self, event): + self.start_x = event.x; self.start_y = event.y + if self.rect_id: self.canvas.delete(self.rect_id) + self.rect_id = self.canvas.create_rectangle(self.start_x, self.start_y, self.start_x, self.start_y, outline="#00ff00", width=3, dash=(4, 4)) + + def on_drag(self, event): + cur_x, curr_y = max(0, min(event.x, self.canvas_w)), max(0, min(event.y, self.canvas_h)) + self.canvas.coords(self.rect_id, self.start_x, self.start_y, cur_x, curr_y) + + def on_release(self, event): + end_x, end_y = max(0, min(event.x, self.canvas_w)), max(0, min(event.y, self.canvas_h)) + real_x1, real_y1 = min(self.start_x, end_x) / self.scale_factor, min(self.start_y, end_y) / self.scale_factor + real_x2, real_y2 = max(self.start_x, end_x) / self.scale_factor, max(self.start_y, end_y) / self.scale_factor + if real_x2 - real_x1 > 10 and real_y2 - real_y1 > 10: + self.result_bbox = [int(real_x1), int(real_y1), int(real_x2), int(real_y2)] + else: + self.canvas.delete(self.rect_id); self.result_bbox = None + + def draw_scaled_rect(self, rx1, ry1, rx2, ry2): + self.result_bbox = [rx1, ry1, rx2, ry2] + x1, y1 = rx1 * self.scale_factor, ry1 * self.scale_factor + x2, y2 = rx2 * self.scale_factor, ry2 * self.scale_factor + self.rect_id = self.canvas.create_rectangle(x1, y1, x2, y2, outline="#00ff00", width=3, dash=(4, 4)) + + def clear_box(self): self.result_bbox = []; self.destroy() + def save_and_close(self): self.destroy() + +# ================================================================= +# CLASS: STYLE EDITOR (SUBTITLE) +# ================================================================= +class AdvancedSRTEditor(tk.Toplevel): + def __init__(self, parent, initial_settings): + super().__init__(parent) + self.transient(parent) + self.grab_set() + self.title("Subtitle Style Editor (Manual Mode)") + self.geometry("600x650") + self.initial_settings = initial_settings + self.result = None + self.create_widgets() + self.load_settings() + + def create_widgets(self): + notebook = ttk.Notebook(self) + notebook.pack(expand=True, fill="both", padx=10, pady=10) + font_tab = ttk.Frame(notebook, padding=10) + notebook.add(font_tab, text="Text & Font") + + font_frame = ttk.LabelFrame(font_tab, text="Font", padding=10) + font_frame.pack(fill="x", pady=5) + ttk.Label(font_frame, text="Font Name:").grid(row=0, column=0, sticky="w", padx=5) + self.fontname_var = tk.StringVar() + ttk.Entry(font_frame, textvariable=self.fontname_var).grid(row=0, column=1, sticky="ew", padx=5) + ttk.Label(font_frame, text="Font Size:").grid(row=1, column=0, sticky="w", padx=5) + self.fontsize_var = tk.DoubleVar() + ttk.Spinbox(font_frame, from_=8, to=200, textvariable=self.fontsize_var).grid(row=1, column=1, sticky="ew", padx=5) + self.bold_var = tk.BooleanVar() + ttk.Checkbutton(font_frame, text="Bold", variable=self.bold_var).grid(row=2, column=1, sticky="w", padx=5) + + color_frame = ttk.LabelFrame(font_tab, text="Colors", padding=10) + color_frame.pack(fill="x", pady=5) + self.primary_color_var, self.primary_color_label = self.create_color_picker(color_frame, "Primary:", 0) + self.outline_color_var, self.outline_color_label = self.create_color_picker(color_frame, "Outline:", 1) + self.karaoke_color_var, self.karaoke_color_label = self.create_color_picker(color_frame, "Karaoke:", 2) + + border_frame = ttk.LabelFrame(font_tab, text="Border", padding=10) + border_frame.pack(fill="x", pady=5) + ttk.Label(border_frame, text="Outline:").grid(row=0, column=0) + self.outline_var = tk.DoubleVar() + ttk.Spinbox(border_frame, from_=0, to=10, increment=0.1, textvariable=self.outline_var).grid(row=0, column=1) + ttk.Label(border_frame, text="Shadow:").grid(row=1, column=0) + self.shadow_var = tk.DoubleVar() + ttk.Spinbox(border_frame, from_=0, to=10, increment=0.1, textvariable=self.shadow_var).grid(row=1, column=1) + + anim_tab = ttk.Frame(notebook, padding=10) + notebook.add(anim_tab, text="Box & Animation") + box_frame = ttk.LabelFrame(anim_tab, text="Text Box", padding=10) + box_frame.pack(fill="x", pady=5) + self.use_box_var = tk.BooleanVar() + ttk.Checkbutton(box_frame, text="Enable Box", variable=self.use_box_var).grid(row=0, column=0) + self.box_color_var, self.box_color_label = self.create_color_picker(box_frame, "Box Color:", 1) + ttk.Label(box_frame, text="Transparency (%):").grid(row=2, column=0) + self.box_transparency_var = tk.IntVar() + ttk.Scale(box_frame, from_=0, to=100, variable=self.box_transparency_var).grid(row=2, column=1) + + anim_frame = ttk.LabelFrame(anim_tab, text="Style", padding=10) + anim_frame.pack(fill="x", pady=5) + self.animation_style_var = tk.StringVar() + anim_styles =["Tĩnh", "Hiện Dần (Fade)", "Karaoke (Tô màu)"] #, "Hiện Theo Từ (Word by Word)"] tạm thời vô hiệu hóa + for style in anim_styles: + ttk.Radiobutton(anim_frame, text=style, variable=self.animation_style_var, value=style).pack(anchor="w") + + misc_tab = ttk.Frame(notebook, padding=10) + notebook.add(misc_tab, text="Misc") + layout_frame = ttk.LabelFrame(misc_tab, text="Layout", padding=10) + layout_frame.pack(fill="x") + ttk.Label(layout_frame, text="Align:").grid(row=0, column=0) + self.alignment_var = tk.IntVar() + ttk.Combobox(layout_frame, textvariable=self.alignment_var, values=list(range(1, 10)), state="readonly").grid(row=0, column=1) + split_frame = ttk.LabelFrame(misc_tab, text="Split", padding=10) + split_frame.pack(fill="x") + self.split_long_lines_var = tk.BooleanVar() + ttk.Checkbutton(split_frame, text="Auto Split", variable=self.split_long_lines_var).grid(row=0, column=0) + self.max_words_per_line_var = tk.IntVar() + ttk.Spinbox(split_frame, textvariable=self.max_words_per_line_var, from_=1, to=20).grid(row=1, column=1) + + scale_frame = ttk.LabelFrame(misc_tab, text="Font Sizing Mode", padding=10) + scale_frame.pack(fill="x", pady=5) + self.scale_mode_var = tk.StringVar() + ttk.Radiobutton(scale_frame, text="Thay đổi linh hoạt theo từng câu (Mặc định)", variable=self.scale_mode_var, value="Dynamic").pack(anchor="w") + ttk.Radiobutton(scale_frame, text="Cố định cỡ chữ (Max Size cho toàn bộ Box)", variable=self.scale_mode_var, value="FixedMax").pack(anchor="w") + + btn_frame = ttk.Frame(self) + btn_frame.pack(side="bottom", fill="x", padx=10, pady=10) + ttk.Button(btn_frame, text="Save JSON", command=self.save_to_json).pack(side="left") + ttk.Button(btn_frame, text="OK", command=self.on_ok).pack(side="right") + + def create_color_picker(self, parent, label_text, row): + var = tk.StringVar() + ttk.Label(parent, text=label_text).grid(row=row, column=0, sticky="w") + label = ttk.Label(parent, text=" ", relief="solid", borderwidth=1) + label.grid(row=row, column=1) + ttk.Button(parent, text="...", command=lambda: self.choose_color(var, label)).grid(row=row, column=2) + return var, label + + def choose_color(self, var, label): + c = colorchooser.askcolor(initialcolor=var.get() or "#FFFFFF")[1] + if c: var.set(c); label.config(background=c) + + def rgb_to_hex(self, rgb): return f"#{rgb[0]:02x}{rgb[1]:02x}{rgb[2]:02x}" + def hex_to_rgb(self, h): h=h.lstrip('#'); return [int(h[i:i+2], 16) for i in (0, 2, 4)] + + def load_settings(self): + s = self.initial_settings + self.fontname_var.set(s.get("fontname", "Arial")) + self.fontsize_var.set(s.get("fontsize", 48)) + self.bold_var.set(s.get("bold", True)) + self.primary_color_var.set(self.rgb_to_hex(s.get("primary_color",[255,255,255]))) + self.outline_color_var.set(self.rgb_to_hex(s.get("outline_color",[0,0,0]))) + self.karaoke_color_var.set(self.rgb_to_hex(s.get("karaoke_color",[255,255,0]))) + self.outline_var.set(s.get("outline", 2.5)) + self.shadow_var.set(s.get("shadow", 1.5)) + self.use_box_var.set(s.get("use_box", False)) + self.box_color_var.set(self.rgb_to_hex(s.get("box_color",[0,0,0]))) + self.box_transparency_var.set(s.get("box_transparency", 50)) + self.animation_style_var.set(s.get("animation_style", "Tĩnh")) + self.alignment_var.set(s.get("alignment", 2)) + self.split_long_lines_var.set(s.get("split_long_lines", False)) + self.max_words_per_line_var.set(s.get("max_words_per_line", 7)) + self.scale_mode_var.set(s.get("scale_mode", "Dynamic")) + self.primary_color_label.config(background=self.primary_color_var.get()) + self.outline_color_label.config(background=self.outline_color_var.get()) + self.karaoke_color_label.config(background=self.karaoke_color_var.get()) + self.box_color_label.config(background=self.box_color_var.get()) + + def collect_settings(self): + return { + "fontname": self.fontname_var.get(), "fontsize": self.fontsize_var.get(), "bold": self.bold_var.get(), + "primary_color": self.hex_to_rgb(self.primary_color_var.get()), "outline_color": self.hex_to_rgb(self.outline_color_var.get()), + "karaoke_color": self.hex_to_rgb(self.karaoke_color_var.get()), "outline": self.outline_var.get(), "shadow": self.shadow_var.get(), + "use_box": self.use_box_var.get(), "box_color": self.hex_to_rgb(self.box_color_var.get()), "box_transparency": self.box_transparency_var.get(), + "animation_style": self.animation_style_var.get(), "alignment": self.alignment_var.get(), + "split_long_lines": self.split_long_lines_var.get(), "max_words_per_line": self.max_words_per_line_var.get(), + "scale_mode": self.scale_mode_var.get() + } + + def on_ok(self): self.result = self.collect_settings(); self.destroy() + + def save_to_json(self): + f = filedialog.asksaveasfilename(defaultextension=".json", title="Lưu file Style JSON", filetypes=[("JSON files", "*.json")]) + if f: + try: + with open(f, 'w', encoding='utf-8') as file: + json.dump(self.collect_settings(), file, indent=4) + messagebox.showinfo("Thành công", f"Đã lưu style vào:\n{f}") + except Exception as e: + messagebox.showerror("Lỗi", f"Không thể lưu file:\n{e}") + +# ================================================================= +# MAIN CLASS +# ================================================================= + + +class BatchProLoopUltimate(tk.Tk): + def __init__(self): + super().__init__() + self.title("PRO LOOP ENGINE - V10.0 (Video XFade Điện Ảnh | TCTC)") + # Mở rộng thiết kế giao diện: Kích thước 1700x1000 siêu rộng chống che nút! + self.geometry("1700x1000") + + # --- Variables & Thread Locking --- + self.task_lock = threading.Lock() + self.esrgan_lock = threading.Semaphore(1) # Chống sập VRAM GPU khi chạy đa luồng AI Upscale + self.pending_tasks =[] + + self.project_file_path = tk.StringVar(value=os.path.join(os.getcwd(), "MyProject_Session.json")) + self.session_data = { + "settings": {}, + "history": {} + } + + self.ffmpeg_path = tk.StringVar(value="ffmpeg") + self.ffprobe_path = tk.StringVar(value="ffprobe") + self.realesrgan_path = tk.StringVar(value="C:/ffmpeg/bin/realesrgan-ncnn-vulkan.exe") + self.enable_ai_upscale = tk.BooleanVar(value=True) + self.color_grade_preset = tk.StringVar(value="Điện Ảnh Mỹ (Cam ấm, Nền xanh lạnh)") + self.temp_dir_path = tk.StringVar(value=DEFAULT_TEMP_DIR) + + self.overlay_path = tk.StringVar() + self.logo_path = tk.StringVar() + self.bg_music_path = tk.StringVar() + self.intro_path = tk.StringVar() + + # === RENDER SPEED MONITOR (thread-safe via GIL - simple types only) === + self.render_stats = { + 'active': False, # đang render hay không + 'batch_start': 0.0, # time.monotonic() khi batch bắt đầu + 'seg_start': 0.0, # time.monotonic() khi segment bắt đầu + 'seg_video_dur': 0.0, # số giây video của segment hiện tại + 'total_video_done': 0.0, # tổng giây video đã render xong + 'total_wall_done': 0.0, # tổng giây CPU/GPU đã render + 'rtf_current': 0.0, # x lần: 1 giây wall = rtf_current giây video + 'rtf_avg': 0.0, # RTF trung bình cả session + 'segment_count': 0, # số segment đã xong + } + + self.logo_scale_min = tk.IntVar(value=100) + self.logo_scale_max = tk.IntVar(value=120) + self.logo_random_pos = tk.BooleanVar(value=True) + + self.enable_sub = tk.BooleanVar(value=True) + self.scale_mode_var = tk.StringVar(value="Dynamic") + self.force_safe_font = tk.BooleanVar(value=False) + self.voice_vol = tk.DoubleVar(value=1.5) + self.bgm_vol = tk.DoubleVar(value=0.3) + self.enable_podcast_filter = tk.BooleanVar(value=False) + self.smart_audio_level = tk.BooleanVar(value=True) + self.enable_audio_evasion_var = tk.BooleanVar(value=False) + + self.check_output_var = tk.BooleanVar(value=True) + self.check_history_var = tk.BooleanVar(value=True) + self.enable_multi_pc_sync = tk.BooleanVar(value=False) + self.app_role = tk.StringVar(value="LOCAL") # LOCAL / MASTER / WORKER + + self.enable_round_robin = tk.BooleanVar(value=False) + self.round_robin_batch = tk.IntVar(value=50) + + self.resolution_var = tk.StringVar(value="1280x720") + self.target_bitrate = tk.StringVar(value="2500") + self.enable_target_size = tk.BooleanVar(value=False) + self.target_size_mb = tk.IntVar(value=400) + self.enable_livestream_mode = tk.BooleanVar(value=False) + + # BẢO VỆ RAM & I/O: Mặc định tối đa 3 tiến trình cho video dài + safe_workers = min(os.cpu_count() or 4, 3) + self.max_gpu_workers = tk.IntVar(value=safe_workers) + self.max_cpu_workers = tk.IntVar(value=max(1, (os.cpu_count() or 4) // 2)) + + self.video_encoder_var = tk.StringVar(value="Auto-Detect") + self.enable_anti_spam_loop = tk.BooleanVar(value=True) + + self.vis_cycle = tk.DoubleVar(value=10.0) + self.vis_motion_type = tk.StringVar(value="Random") + self.motion_intensity = tk.DoubleVar(value=1.0) + self.vis_blend = tk.StringVar(value="Screen") + self.vis_opacity = tk.DoubleVar(value=0.8) + self.fast_mode = tk.BooleanVar(value=True) # ⚡ FFmpeg Fast Mode - mặc định BẪT + + # --- FEATURE 1: Segmented Overlay --- + self.enable_segmented_overlay = tk.BooleanVar(value=False) + self.overlay_seg_min = tk.IntVar(value=10) # phút + self.overlay_seg_max = tk.IntVar(value=30) # phút + + # --- FEATURE 2: Motion riêng cho Mode 1 & Mode 2 --- + self.mode1_motion_type = tk.StringVar(value="Random") + self.mode2_motion_type = tk.StringVar(value="Random") + + # --- FEATURE 3: Intro Animation Effect --- + self.intro_effect_type = tk.StringVar(value="Random") + self.intro_effect_duration = tk.DoubleVar(value=3.0) + self.outro_effect_type = tk.StringVar(value="None") + self.outro_effect_duration = tk.DoubleVar(value=2.0) + + self.xfade_transition_type = tk.StringVar(value="Random") + + self.source_mode = tk.IntVar(value=3) + self.mode1_type = tk.StringVar(value="Single") + + # --- MODE B: NAS SCAN (Mượn từ mini_tabb3) --- + self.input_mode_var = tk.StringVar(value="multi_folder") # "multi_folder" hoặc "nas_scan" + self.nas_root_var = tk.StringVar() + self.nas_sub_json_dir_var = tk.StringVar() + self.nas_overlay_dir_var = tk.StringVar() + self.mode1_slide_dur_min = tk.DoubleVar(value=5.0) + self.mode1_slide_dur_max = tk.DoubleVar(value=8.0) + self.slide_dur_min = tk.DoubleVar(value=3.0) + self.slide_dur_max = tk.DoubleVar(value=6.0) + self.mode2_amount = tk.IntVar(value=5) + self.mode3_amount = tk.IntVar(value=2) + self.mode3_type = tk.StringVar(value="Static (Fast)") + + self.srt_settings = { + "fontname": "Arial", "fontsize": 48, "bold": True, + "primary_color":[255, 255, 255], "outline_color":[0, 0, 0], "karaoke_color":[255, 255, 0], + "outline": 2.5, "shadow": 1.5, + "use_box": False, "box_color": [0, 0, 0], "box_transparency": 50, + "animation_style": "Tĩnh", "alignment": 2, + "split_long_lines": False, "max_words_per_line": 7 + } + + self.stop_event = threading.Event() + self.msg_queue = queue.Queue() + self.tasks_list =[] + self.processing = False + self.start_time = None + self.success_count = 0 + self.fail_count = 0 + self.skip_count = 0 + self.logged_errors = set() + + # --- GLOBAL WATCHDOG VARIABLES --- + self.watchdog_expected_files =[] + self.watchdog_running = False + self.watchdog_last_done_count = 0 + self.watchdog_last_progress_time = 0 + self.watchdog_interval_mins = 30 # Cứ 30 phút check 1 lần + self.stall_timeout_hours = 2.0 # 2 tiếng không nhảy số = Treo + + + + self.create_ui() + self._update_ui_by_role() # Sắp xếp nút bấm theo vai trò mặc định (LOCAL) + self.load_global_config() + self.load_project_file(self.project_file_path.get()) + self.check_env() + self.after(100, self.process_ui_queue) + self.blink_status_light() + self._start_persistent_cmd_listener() + + # Bắt sự kiện bấm X tắt App + self.protocol("WM_DELETE_WINDOW", self.on_closing_app) + + + + def _fmt_duration(self, secs): + """Format seconds to human-readable e.g. 1g23p45s""" + secs = max(0, int(secs)) + h, rem = divmod(secs, 3600) + m, s = divmod(rem, 60) + if h > 0: return f"{h}g{m:02d}p{s:02d}s" + if m > 0: return f"{m}p{s:02d}s" + return f"{s}s" + + def _start_render_speed_monitor(self): + """Vòng lặp 1 giây cập nhật widget RTF - chỉ chạy trên main thread qua after().""" + def _tick(): + try: + rs = self.render_stats + if rs['active']: + now = time.monotonic() + # Tính wall time đang chạy của segment hiện tại + seg_wall = now - rs['seg_start'] if rs['seg_start'] > 0 else 0 + seg_vid = rs['seg_video_dur'] + + # RTF tức thời (segment đang chạy) + rtf_now = (seg_vid / seg_wall) if seg_wall > 0.5 else rs.get('rtf_avg', 0) + + # Tổng elapsed wall + total_wall = (now - rs['batch_start']) if rs['batch_start'] > 0 else 0 + + # RTF trung bình + rtf_avg = rs['rtf_avg'] + + # Video done tổng + vid_done = rs['total_video_done'] + + # ETA: dùng RTF avg, cần biết tổng video đích (nếu có) + total_vid_expected = rs.get('total_video_expected', 0) + if total_vid_expected > 0 and rtf_avg > 0: + remaining_vid = max(0, total_vid_expected - vid_done) + eta_wall = remaining_vid / rtf_avg + eta_str = f"ETA: ~{self._fmt_duration(eta_wall)}" + else: + eta_str = "ETA: đang tính..." + + # Update labels + rtf_disp = rtf_now if rtf_now > 0 else rtf_avg + self.lbl_rtf.config( + text=f"⚡ x{rtf_disp:.1f}" if rtf_disp > 0 else "RTF: —", + fg="#00ff88" if rtf_disp >= 5 else ("#ffcc00" if rtf_disp >= 2 else "#ff4444") + ) + self.lbl_vdone.config(text=f"Video: {self._fmt_duration(vid_done)}") + self.lbl_wall.config(text=f"Real: {self._fmt_duration(total_wall)}") + self.lbl_eta.config(text=eta_str) + self.lbl_segs.config(text=f"Segs:{rs['segment_count']}") + else: + # Idle state + if rs['total_video_done'] > 0: + # Đã xong — hiện tổng kết + self.lbl_rtf.config(text=f"✅ x{rs['rtf_avg']:.1f}", fg="#00ff88") + self.lbl_vdone.config(text=f"Video: {self._fmt_duration(rs['total_video_done'])}") + self.lbl_segs.config(text=f"Segs:{rs['segment_count']}") + # else: giữ nguyên — + except Exception: + pass # Không bao giờ crash UI + finally: + self.after(1000, _tick) # Lặp lại sau 1 giây + + self.after(1000, _tick) + + def _log_and_run_subprocess(self, cmd, task_name="System", is_cluster_compatible=True): + cmd_str_for_log = ' '.join(f'"{arg}"' if ' ' in arg else arg for arg in cmd) + + PROBE_FLAGS = {"-encoders","-decoders","-filters","-formats","-version"} + _is_probe = task_name == "System" or any(a in PROBE_FLAGS for a in cmd) + + if getattr(self, '_active_cluster_mode', False) and is_cluster_compatible and not _is_probe: + return self._dispatch_cmd_to_cluster(cmd, task_name, cmd_str_for_log) + + self.log(f"[{task_name}] EXEC: {cmd_str_for_log}") + + si = None + if os.name == 'nt': + si = subprocess.STARTUPINFO() + si.dwFlags |= subprocess.STARTF_USESHOWWINDOW + + try: + proc = subprocess.Popen( + cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, + text=True, encoding='utf-8', errors='ignore', startupinfo=si + ) + stdout_data, stderr_data = "", "" + while True: + try: + out, err = proc.communicate(timeout=1.0) + stdout_data += (out or "") + stderr_data += (err or "") + break + except subprocess.TimeoutExpired: + # Master bấm STOP + if getattr(self, "stop_event", None) and self.stop_event.is_set(): + proc.kill(); raise Exception("Task bị hủy bởi người dùng (Master Stop).") + # Master bắn KILL_TASK qua NAS + if getattr(self, "worker_kill_current", False): + proc.kill(); raise Exception("Task bị CƯỠNG CHẾL HỦY bởi lệnh từ Master Control!") + + stderr_lower = stderr_data.lower() + if "error parsing ass" in stderr_lower or "unable to parse option value" in stderr_lower: + self.log(f"[{task_name}] ⚠️ WARNING: FFmpeg reported ASS/Subtitle parsing errors!\n{stderr_data[-500:]}") + if "font not found" in stderr_lower or "fontconfig error" in stderr_lower: + self.log(f"[{task_name}] ⚠️ WARNING: FFmpeg could not find the specified font!\n{stderr_data[-500:]}") + + if proc.returncode != 0: + raise Exception( + f"FFMPEG Error (Task: {task_name}):\n" + f" Return Code: {proc.returncode}\n" + f" Full Command: {cmd_str_for_log}\n" + f" --- FFMPEG STDERR (Last 1500 chars) ---\n{stderr_data[-1500:]}") + return type("Result", (object,), {"returncode": proc.returncode, "stdout": stdout_data, "stderr": stderr_data})() + except FileNotFoundError: raise Exception(f"Command not found: '{cmd[0]}'. Is FFMPEG_PATH correct?") + except Exception as e: raise e + + def _dispatch_cmd_to_cluster(self, cmd, task_name, cmd_str_for_log): + """ + NAS FILE QUEUE DISPATCH - Không cần TCP, không cần port, không cần firewall. + Hoạt động 100% qua thư mục chia sẻ NAS. + Slave chạy AIFarm_Worker_Node_v2.py để nhận jobs. + """ + import json as _json, uuid as _uuid + + NAS_Q = r"\\nas_tcg\vệ tinh tcg\UY\Render_Cluster\Queue" + DIR_PENDING = os.path.join(NAS_Q, "PENDING") + DIR_CLAIMED = os.path.join(NAS_Q, "CLAIMED") + DIR_DONE = os.path.join(NAS_Q, "DONE") + DIR_PROGRESS = os.path.join(NAS_Q, "PROGRESS") + for d in (DIR_PENDING, DIR_CLAIMED, DIR_DONE, DIR_PROGRESS): + try: os.makedirs(d, exist_ok=True) + except: pass + + job_id = str(_uuid.uuid4())[:8] + job = {"job_id": job_id, "task_name": task_name, + "commands": [{"cmd": cmd}]} + tmp_file = os.path.join(DIR_PENDING, f"job_{job_id}.json.tmp") + pend_file = os.path.join(DIR_PENDING, f"job_{job_id}.json") + try: + with open(tmp_file, "w", encoding="utf-8") as f: + _json.dump(job, f, ensure_ascii=False) + os.replace(tmp_file, pend_file) # Atomic write + except Exception as e: + raise Exception(f"Không ghi được job lên NAS: {e}") + + self.log(f"[{task_name}] 📤 ⇒ QUEUE ({job_id}) — Chờ Worker...") + + # ── BLOCKING POLL: chờ Worker hoàn thành trước khi tiếp tục pipeline ── + # Thread pool đảm bảo song song — nhiều thread chờ trên nhiều worker khác nhau + deadline = time.time() + 600 # 10 phút + done_file = os.path.join(DIR_DONE, f"done_{job_id}.json") + progress_file = os.path.join(DIR_PROGRESS, f"progress_{job_id}.txt") + last_prog_log = 0 + import json as _jj + + while time.time() < deadline: + if self.stop_event.is_set(): + try: os.remove(pend_file) + except: pass + raise Exception("Batch dừng bởi người dùng.") + + # Live progress (mỗi 5s) + if time.time() - last_prog_log > 5: + try: + if os.path.exists(progress_file): + prog = open(progress_file, "r", encoding="utf-8").read().strip() + if prog: + wn, tp = (prog.split("|",1)+[""])[:2], "" + self.log(f" ↳ [{wn[0]}] ▶ {task_name} [{wn[1] if len(prog.split('|'))>1 else prog}]") + last_prog_log = time.time() + except: pass + + # Kiểm tra DONE + if os.path.exists(done_file): + try: + with open(done_file, "r", encoding="utf-8") as f: + rpt = _jj.load(f) + try: os.remove(done_file) + except: pass + try: os.remove(progress_file) + except: pass + + worker = rpt.get("worker", "?") + if rpt.get("success"): + # Xác minh file output tồn tại + out = next((a for a in reversed(cmd) + if a.endswith((".mp4",".mkv",".mov",".ts"))), None) + if out and os.path.exists(out): + sz = os.path.getsize(out)/(1024*1024) + self.log(f"[{task_name}] ✅ [{worker}] XONG! 📁 {os.path.basename(out)} ({sz:.1f}MB)") + elif out: + self.log(f"[{task_name}] ⚠️ [{worker}] xong nhưng FILE KHÔNG TỒN TẠI: {out}") + else: + self.log(f"[{task_name}] ✅ [{worker}] XONG!") + return type("ok", (), {"returncode": 0, "stderr": "", "stdout": ""})() + else: + raise Exception(f"Worker [{worker}] thất bại:\n{rpt.get('log','')[-600:]}") + except Exception as e: + if "thất bại" in str(e): raise e + + time.sleep(1.5) + + try: os.remove(pend_file) + except: pass + raise Exception(f"[{task_name}] ⏰ TIMEOUT 10 phút — Không worker nào xử lý job!") + + + + + def get_available_encoders(self, ffmpeg_path): + encoders = { "Auto-Detect": "Tự động phát hiện (Khuyên dùng)", "libx264": "CPU (Tương thích cao nhất)" } + if not os.path.exists(ffmpeg_path): return encoders + try: + cmd = [ffmpeg_path, "-hide_banner", "-encoders"] + res = self._log_and_run_subprocess(cmd) + output = res.stdout + if "h264_nvenc" in output: encoders["h264_nvenc"] = "NVIDIA NVENC (GPU)" + if "h264_amf" in output: encoders["h264_amf"] = "AMD AMF (GPU)" + if "h264_qsv" in output: encoders["h264_qsv"] = "Intel QSV (GPU)" + except Exception as e: self.log(f"Warning: Could not get encoders list. {e}") + return encoders + + def create_ui(self): + root_container = ttk.Frame(self) + root_container.pack(fill=tk.BOTH, expand=True) + + self.bottom_dock = ttk.Frame(root_container) + self.bottom_dock.pack(side=tk.BOTTOM, fill=tk.X) + + container = ttk.Frame(root_container) + container.pack(side=tk.TOP, fill=tk.BOTH, expand=True) + + # Thêm Thanh Cuộn Ngang + Dọc để chống lọt khung + scrollbar = ttk.Scrollbar(container, orient=tk.VERTICAL) + scrollbar.pack(side=tk.RIGHT, fill=tk.Y) + + h_scrollbar = ttk.Scrollbar(container, orient=tk.HORIZONTAL) + h_scrollbar.pack(side=tk.BOTTOM, fill=tk.X) + + self.canvas = tk.Canvas(container, yscrollcommand=scrollbar.set, xscrollcommand=h_scrollbar.set) + self.canvas.pack(side=tk.LEFT, fill=tk.BOTH, expand=True) + + scrollbar.config(command=self.canvas.yview) + h_scrollbar.config(command=self.canvas.xview) + + self.scrollable_frame = ttk.Frame(self.canvas, padding=10) + # Sửa lỗi tràn bề ngang UI: Tự động nới dãn khi kéo, nhưng KHÔNG bóp méo khi màn hình nhỏ (sinh ra thanh cuộn ngang) + self.window_id = self.canvas.create_window((0, 0), window=self.scrollable_frame, anchor="nw") + self.scrollable_frame.bind("", lambda e: self.canvas.configure(scrollregion=self.canvas.bbox("all"))) + self.canvas.bind("", lambda e: self.canvas.itemconfig(self.window_id, width=max(e.width, self.scrollable_frame.winfo_reqwidth()))) + + def _on_mousewheel(event): + if event.delta: self.canvas.yview_scroll(int(-1 * (event.delta / 120)), "units") + elif event.num == 4: self.canvas.yview_scroll(-1, "units") + elif event.num == 5: self.canvas.yview_scroll(1, "units") + self.bind_all("", _on_mousewheel); self.bind_all("", _on_mousewheel); self.bind_all("", _on_mousewheel) + + content_frame = self.scrollable_frame + + proj_frame = ttk.LabelFrame(content_frame, text="🌟 Quản Lý Phiên Làm Việc (Lưu File Setup & Lịch Sử Xuyên Máy Tính)", padding=10) + proj_frame.pack(fill=tk.X, expand=True, pady=5) + r_p = ttk.Frame(proj_frame); r_p.pack(fill=tk.X) + ttk.Label(r_p, text="File Project (JSON):", width=20, font=("Arial", 9, "bold"), foreground="green").pack(side=tk.LEFT) + ttk.Entry(r_p, textvariable=self.project_file_path, width=70).pack(side=tk.LEFT, padx=5, fill=tk.X, expand=True) + ttk.Button(r_p, text="Tạo Mới / Lưu Thành", command=self.save_project_as).pack(side=tk.LEFT, padx=2) + ttk.Button(r_p, text="Mở Project Khác", command=self.open_project_file).pack(side=tk.LEFT, padx=2) + ttk.Button(r_p, text="Xóa Lịch Sử Render", command=self.clear_history).pack(side=tk.LEFT, padx=2) + + sys_config_frame = ttk.LabelFrame(content_frame, text="0. Cấu hình Hệ thống & Bộ nhớ Cache", padding=10) + sys_config_frame.pack(fill=tk.X, expand=True, pady=5) + r_ff = ttk.Frame(sys_config_frame); r_ff.pack(fill=tk.X, pady=2) + ttk.Label(r_ff, text="FFmpeg Path:", width=20, foreground="red", font=("Arial", 9, "bold")).pack(side=tk.LEFT) + ttk.Entry(r_ff, textvariable=self.ffmpeg_path, width=70).pack(side=tk.LEFT, padx=5, fill=tk.X, expand=True) + ttk.Button(r_ff, text="Browse", command=self.browse_ffmpeg).pack(side=tk.LEFT) + + r_esr = ttk.Frame(sys_config_frame); r_esr.pack(fill=tk.X, pady=2) + ttk.Checkbutton(r_esr, text="Bật AI Upscale 4K (Real-ESRGAN - Tự chuyển GPU/CPU):", variable=self.enable_ai_upscale, width=40).pack(side=tk.LEFT) + ttk.Entry(r_esr, textvariable=self.realesrgan_path, width=60).pack(side=tk.LEFT, padx=5, fill=tk.X, expand=True) + + # ⚡ FAST MODE - Checkbox to đùng dđ ngay sau AI Upscale + r_fast = tk.Frame(sys_config_frame, bg="#fff3cd", bd=2, relief="ridge"); r_fast.pack(fill=tk.X, pady=4) + tk.Checkbutton( + r_fast, + text=" ⚡ FAST MODE — FFmpeg thuần (không OpenCV) — Tăng tốc 10~20x, chất lượng tương đương ", + variable=self.fast_mode, + font=("Arial", 13, "bold"), + fg="#c75000", bg="#fff3cd", + activebackground="#ffe082", + selectcolor="#ffe082", + indicatoron=True, + padx=12, pady=6 + ).pack(fill=tk.X, anchor="w") + r_tmp = ttk.Frame(sys_config_frame); r_tmp.pack(fill=tk.X, pady=2) + ttk.Label(r_tmp, text="TEMP/CACHE Folder:", width=20, foreground="blue", font=("Arial", 9, "bold")).pack(side=tk.LEFT) + ttk.Entry(r_tmp, textvariable=self.temp_dir_path, width=65).pack(side=tk.LEFT, padx=5, fill=tk.X, expand=True) + ttk.Button(r_tmp, text="Chọn Ổ Khác (D:/E:)", command=lambda: self.browse_folder(self.temp_dir_path)).pack(side=tk.LEFT) + + # =================================================================== + # MODE SELECTOR: Multi-Folder (A) vs NAS Scan (B) + # =================================================================== + self.mode_selector_frame = tk.Frame(content_frame, bg="#e8f5e9", bd=2, relief="groove") + self.mode_selector_frame.pack(fill=tk.X, expand=True, pady=5) + tk.Label(self.mode_selector_frame, text="🔀 CHẾ ĐỘ NHẬP DỮ LIỆU:", font=("Segoe UI", 11, "bold"), bg="#e8f5e9", fg="#1b5e20").pack(side=tk.LEFT, padx=10, pady=5) + tk.Radiobutton(self.mode_selector_frame, text="Mode A: Multi-Folder (Hiện tại)", variable=self.input_mode_var, value="multi_folder", command=self._toggle_input_mode, + font=("Segoe UI", 10, "bold"), bg="#e8f5e9", fg="#0d47a1", activebackground="#e8f5e9", selectcolor="#c8e6c9", indicatoron=1).pack(side=tk.LEFT, padx=15, pady=5) + tk.Radiobutton(self.mode_selector_frame, text="Mode B: NAS Scan (Như Tab3 Mini)", variable=self.input_mode_var, value="nas_scan", command=self._toggle_input_mode, + font=("Segoe UI", 10, "bold"), bg="#e8f5e9", fg="#e65100", activebackground="#e8f5e9", selectcolor="#c8e6c9", indicatoron=1).pack(side=tk.LEFT, padx=15, pady=5) + + # === MODE A: Multi-Folder (Giao diện cũ) === + self.mode_a_frame = ttk.LabelFrame(content_frame, text="1A. Chọn Thư Mục Dữ Liệu (Multi-Folder Mapping)", padding=10) + self.mode_a_frame.pack(fill=tk.X, expand=True, pady=5) + + def create_path_section(parent, label_text, color): + f = ttk.Frame(parent); f.pack(fill=tk.X, pady=3) + lbl = ttk.Label(f, text=label_text, width=25, font=("bold",10), foreground=color); lbl.pack(side=tk.LEFT, anchor="n", padx=(0,5)) + txt = scrolledtext.ScrolledText(f, height=3, width=60, font=("Consolas", 10)); txt.pack(side=tk.LEFT, fill=tk.X, expand=True, padx=5) + btn = ttk.Button(f, text="Add Folder", command=lambda: self.append_folder_to_text(txt)); btn.pack(side=tk.LEFT, anchor="n") + return txt + + self.txt_inputs = create_path_section(self.mode_a_frame, "📁 INPUTS (Audio/MP4):", "blue") + self.txt_sub_json = create_path_section(self.mode_a_frame, "✍️ SUB JSON (Style):", "#ff6f00") + self.txt_logos = create_path_section(self.mode_a_frame, "🛡️ LOGO FOLDER 0:0:", "purple") + self.txt_images = create_path_section(self.mode_a_frame, "🖼️ IMAGES/VIDEOS:", "green") + self.txt_outputs = create_path_section(self.mode_a_frame, "💾 OUTPUTS:", "red") + + # === MODE B: NAS Scan (Giao diện mới) === + self.mode_b_frame = ttk.LabelFrame(content_frame, text="1B. Quét Thư Mục NAS (Cấu trúc _OUTPUT_PROJECTS)", padding=10) + # Ẩn mặc định + + nas_r1 = ttk.Frame(self.mode_b_frame); nas_r1.pack(fill=tk.X, pady=3) + self.txt_nas_inputs = create_path_section(self.mode_b_frame, "📁 FOLDERS _OUTPUT_PROJECTS:", "#e65100") + self.txt_nas_sub_json = create_path_section(self.mode_b_frame, "✍️ FOLDERS SUB JSON (Theo từng dòng):", "#ff6f00") + + # -----> Ô nhập LOGO Mode B <----- + self.txt_nas_logos = create_path_section(self.mode_b_frame, "🛡️ FOLDERS LOGO ÁP 0:0 (Từng dòng):", "purple") + + # --- Mode B Motion & Transition --- + nas_r3 = ttk.Frame(self.mode_b_frame); nas_r3.pack(fill=tk.X, pady=5) + ttk.Label(nas_r3, text="🎬 Motion Ảnh:", width=15, font=("bold", 10), foreground="blue").pack(side=tk.LEFT) + self.nas_motion_type = tk.StringVar(value="Random") + all_motion_ops = ["Random", "Static", "Zoom In", "Zoom Out", "Pan Left->Right", "Pan Right->Left", "Bồng Bềnh (Parallax)", "Bồng Bềnh Nhẹ (Romantic)", "Deep Breathe (Focus)", "Slow Pan Diagonal", "Ken Burns (Zoom Pan)", "Drone Hover (Hình số 8)", "Handheld (Camera cầm tay)", "Pendulum Sway (Quả lắc)", "Space Float (Phi trọng lực)"] + ttk.Combobox(nas_r3, textvariable=self.nas_motion_type, values=all_motion_ops, width=22, state="readonly").pack(side=tk.LEFT, padx=5) + + ttk.Label(nas_r3, text="🎞 Chuyển Cảnh (Xfade):", font=("bold", 10), foreground="green").pack(side=tk.LEFT, padx=(20, 5)) + self.nas_transition_type = tk.StringVar(value="Random") + xfade_ops_b = ["Random", "distance", "smoothleft", "smoothright", "smoothup", "smoothdown"] + ttk.Combobox(nas_r3, textvariable=self.nas_transition_type, values=xfade_ops_b, width=15, state="readonly").pack(side=tk.LEFT, padx=5) + + nas_r4 = ttk.Frame(self.mode_b_frame); nas_r4.pack(fill=tk.X, pady=5) + ttk.Label(nas_r4, text="Cường độ Zoom/Pan:", font=("bold", 10)).pack(side=tk.LEFT, padx=(0, 5)) + ttk.Scale(nas_r4, from_=0.1, to=10.0, variable=self.motion_intensity, orient=tk.HORIZONTAL, length=100).pack(side=tk.LEFT, padx=5) + ttk.Label(nas_r4, text="Motion Cycle (s):", font=("bold", 10)).pack(side=tk.LEFT, padx=(20, 5)) + ttk.Entry(nas_r4, textvariable=self.vis_cycle, width=5).pack(side=tk.LEFT) + + nas_r5 = ttk.Frame(self.mode_b_frame); nas_r5.pack(fill=tk.X, pady=5) + ttk.Label(nas_r5, text="Overlay", font=("bold", 10)).pack(side=tk.LEFT, padx=(0, 5)) + ttk.Entry(nas_r5, textvariable=self.overlay_path, width=20).pack(side=tk.LEFT, padx=5) + ttk.Button(nas_r5, text="...", command=lambda: self.browse_folder(self.overlay_path), width=3).pack(side=tk.LEFT) + ttk.Checkbutton(nas_r5, text="Tách đoạn (Chống crash)", variable=self.enable_segmented_overlay).pack(side=tk.LEFT, padx=10) + ttk.Label(nas_r5, text="Min(m):", font=("bold", 9)).pack(side=tk.LEFT) + ttk.Spinbox(nas_r5, from_=1, to=60, textvariable=self.overlay_seg_min, width=3).pack(side=tk.LEFT) + ttk.Label(nas_r5, text="Max(m):", font=("bold", 9)).pack(side=tk.LEFT, padx=(5,0)) + ttk.Spinbox(nas_r5, from_=1, to=120, textvariable=self.overlay_seg_max, width=3).pack(side=tk.LEFT) + + tk.Label(self.mode_b_frame, text=" Cấu trúc: Root → Group → _OUTPUT_PROJECTS → ProjectFolder → *_PHASE_*.mp3 + *.jpg\n Mỗi project → 1 video duy nhất. Engine render giữ nguyên (Motion + XFade) của bản gốc.", + font=("Segoe UI", 9, "italic"), fg="#555", justify="left").pack(anchor="w", padx=10, pady=(5, 0)) + action_frame_container = ttk.LabelFrame(self.bottom_dock, text="2. Bảng Điều Khiển (Ghim Cố Định)", padding=10) + action_frame_container.pack(fill=tk.X, expand=False, pady=5) + + # ===================================================================== + # 👑 ROLE SELECTOR — Giao diện chọn chức năng máy này + # ===================================================================== + role_frame = tk.Frame(action_frame_container, bg="#1e1e1e") + role_frame.pack(fill=tk.X, pady=5, padx=10) + tk.Label(role_frame, text="💻 CHỌN CHỨC NĂNG MÁY NÀY:", font=("Segoe UI", 13, "bold"), fg="#00ffcc", bg="#1e1e1e").pack(side=tk.LEFT, padx=10) + style_radio = {"font": ("Segoe UI", 11, "bold"), "bg": "#1e1e1e", "fg": "white", "selectcolor": "#444444", "activebackground": "#1e1e1e"} + tk.Radiobutton(role_frame, text="1. MÁY ĐỘC LẬP (Tự làm cục bộ)", variable=self.app_role, value="LOCAL", command=self._update_ui_by_role, **style_radio).pack(side=tk.LEFT, padx=15) + tk.Radiobutton(role_frame, text="2. MÁY CHỦ (Phân phát việc lên NAS)", variable=self.app_role, value="MASTER", command=self._update_ui_by_role, **style_radio).pack(side=tk.LEFT, padx=15) + tk.Radiobutton(role_frame, text="3. MÁY THỢ (Chỉ nhận & cày việc)", variable=self.app_role, value="WORKER", command=self._update_ui_by_role, **style_radio).pack(side=tk.LEFT, padx=15) + + # NAS folder (hiện khi MASTER hoặc WORKER) + self.enable_cluster_render = tk.BooleanVar(value=False) + self.nas_frame = tk.Frame(action_frame_container, bg="#2d2d2d", bd=1, relief="groove") + self.nas_queue_path = tk.StringVar(value=r"\\nas_tcg\vệ tinh tcg\UY\Render_Cluster\Queue") + tk.Label(self.nas_frame, text="📁 Thư mục NAS Queue (Dùng chung):", font=("Arial", 10, "bold"), fg="#ffcc00", bg="#2d2d2d").pack(side=tk.LEFT, padx=10, pady=4) + tk.Entry(self.nas_frame, textvariable=self.nas_queue_path, width=50, font=("Consolas", 10)).pack(side=tk.LEFT, padx=5) + tk.Button(self.nas_frame, text="Browse", command=lambda: self.browse_folder(self.nas_queue_path), bg="#444", fg="white").pack(side=tk.LEFT, padx=5) + tk.Button(self.nas_frame, text="🖥️ Mở Dashboard Trại", bg="#005a9e", fg="white", font=("Arial", 9, "bold"), command=self.open_cluster_dashboard).pack(side=tk.RIGHT, padx=10, ipady=2) + tk.Button(self.nas_frame, text="🗑️ Dọn rác Hàng Chờ", bg="#8B0000", fg="white", command=self._clear_pending_queue).pack(side=tk.RIGHT, padx=5) + + # Action buttons + self.action_btn_frame = tk.Frame(action_frame_container, bg="#1e1e1e") + self.action_btn_frame.pack(fill=tk.X, padx=10, pady=8) + self.btn_scan = tk.Button(self.action_btn_frame, text="🔍 1. SCAN DỮ LIỆU", font=("Arial", 11, "bold"), bg="#444444", fg="white", command=self._dispatch_scan) + self.btn_scan.pack(side=tk.LEFT, fill=tk.X, expand=True, padx=5, ipady=8) + + self.btn_reset_tasks = tk.Button(self.action_btn_frame, text="🗑️ RESET CÔNG VIỆC", font=("Arial", 11, "bold"), bg="#8b0000", fg="white", command=self.reset_tasks) + self.btn_reset_tasks.pack(side=tk.LEFT, fill=tk.BOTH, expand=False, padx=5, ipady=8) + + self.btn_export_colab = tk.Button(self.action_btn_frame, text="☁️ HF SYNC & UPLOAD", font=("Arial", 11, "bold"), bg="#0d6efd", fg="white", command=self._export_colab_tasks_json) + self.btn_export_colab.pack(side=tk.LEFT, fill=tk.BOTH, expand=False, padx=5, ipady=8) + + # HF Config row - nằm ngay bên cạnh nút Sync + hf_cfg_frame = tk.Frame(self.action_btn_frame, bg="#1e1e1e") + hf_cfg_frame.pack(side=tk.LEFT, padx=5) + tk.Label(hf_cfg_frame, text="HF Token:", fg="#aaa", bg="#1e1e1e", font=("Arial", 8)).grid(row=0, column=0, sticky="w") + self.hf_token_var = tk.StringVar() + tk.Entry(hf_cfg_frame, textvariable=self.hf_token_var, show="*", width=22, font=("Arial", 8)).grid(row=0, column=1, sticky="ew", padx=2) + tk.Label(hf_cfg_frame, text="HF Repo:", fg="#aaa", bg="#1e1e1e", font=("Arial", 8)).grid(row=1, column=0, sticky="w") + self.hf_repo_var = tk.StringVar() + tk.Entry(hf_cfg_frame, textvariable=self.hf_repo_var, width=22, font=("Arial", 8)).grid(row=1, column=1, sticky="ew", padx=2) + tk.Button(hf_cfg_frame, text="💾", command=self.save_global_config, bg="#333", fg="white", font=("Arial", 8), relief="flat").grid(row=0, column=2, rowspan=2, padx=2) + + tk.Button(self.action_btn_frame, text="🎥 PREVIEW", bg="#17a2b8", fg="white", font=("Arial", 10, "bold"), command=self.start_preview).pack(side=tk.LEFT, padx=5, ipady=5) + self.btn_start = tk.Button(self.action_btn_frame, text="▶ 2. START FFMPEG RENDER", bg="#28a745", fg="white", font=("Arial", 12, "bold"), command=self.start_batch) + self.btn_start.pack(side=tk.LEFT, fill=tk.X, expand=True, padx=5, ipady=5) + self.btn_worker = tk.Button(self.action_btn_frame, text="🤖 BẬT MÁY THỢ (CÀY 24/7)", font=("Arial", 13, "bold"), bg="#1b1b3a", fg="#00ffcc", command=self.toggle_worker_mode) + self.worker_opt_frame = tk.Frame(self.action_btn_frame, bg="#1e1e1e") + self.worker_threads = tk.IntVar(value=0) + tk.Label(self.worker_opt_frame, text="Luồng (0=Auto):", fg="white", bg="#1e1e1e").pack(side=tk.LEFT) + tk.Spinbox(self.worker_opt_frame, from_=0, to=32, textvariable=self.worker_threads, width=3).pack(side=tk.LEFT) + tk.Button(self.action_btn_frame, text="⏹ STOP", bg="#dc3545", fg="white", font=("Arial", 10, "bold"), command=self.stop_batch).pack(side=tk.RIGHT, padx=5, ipady=5) + live_box = tk.Frame(self.action_btn_frame, bg="#1e1e1e"); live_box.pack(side=tk.RIGHT, padx=15) + self.status_canvas = tk.Canvas(live_box, width=40, height=30, bg="#1e1e1e", highlightthickness=0); self.status_canvas.pack() + self.status_light = self.status_canvas.create_oval(5, 5, 25, 25, fill="red", outline="black") + self.status_label = self.status_canvas.create_text(35, 15, text="IDLE", anchor="w", font=("Arial", 8), fill="white") + + ttk.Separator(action_frame_container, orient=tk.HORIZONTAL).pack(fill=tk.X, pady=10) + + r1 = ttk.Frame(action_frame_container); r1.pack(fill=tk.X, pady=2) + ttk.Label(r1, text="Overlay FOLDER (Random):", width=25).pack(side=tk.LEFT) + ttk.Entry(r1, textvariable=self.overlay_path).pack(side=tk.LEFT, fill=tk.X, expand=True, padx=5) + ttk.Button(r1, text="Browse", command=lambda: self.browse_folder(self.overlay_path)).pack(side=tk.RIGHT) + + # --- SEGMENTED OVERLAY CONTROLS --- + ovl_seg_frame = ttk.Frame(action_frame_container); ovl_seg_frame.pack(fill=tk.X, pady=2) + ttk.Checkbutton(ovl_seg_frame, text="[OVL] Overlay theo doan (Moi doan 1 overlay khac nhau)", variable=self.enable_segmented_overlay).pack(side=tk.LEFT) + ttk.Label(ovl_seg_frame, text="Min (phut):").pack(side=tk.LEFT, padx=(15, 0)) + ttk.Spinbox(ovl_seg_frame, from_=1, to=60, textvariable=self.overlay_seg_min, width=4).pack(side=tk.LEFT, padx=3) + ttk.Label(ovl_seg_frame, text="Max (phút):").pack(side=tk.LEFT, padx=(5, 0)) + ttk.Spinbox(ovl_seg_frame, from_=1, to=120, textvariable=self.overlay_seg_max, width=4).pack(side=tk.LEFT, padx=3) + + # Thêm Intro Config + r_intro = ttk.Frame(action_frame_container); r_intro.pack(fill=tk.X, pady=2) + ttk.Label(r_intro, text="Video Intro (Ghép đầu):", width=25).pack(side=tk.LEFT) + ttk.Entry(r_intro, textvariable=self.intro_path).pack(side=tk.LEFT, fill=tk.X, expand=True, padx=5) + ttk.Button(r_intro, text="Browse", command=lambda: self.browse_file(self.intro_path, "*.mp4 *.mov")).pack(side=tk.RIGHT) + + r3 = ttk.Frame(action_frame_container); r3.pack(fill=tk.X, pady=2) + ttk.Label(r3, text="Background Music (Chung):", width=25).pack(side=tk.LEFT) + ttk.Entry(r3, textvariable=self.bg_music_path).pack(side=tk.LEFT, fill=tk.X, expand=True, padx=5) + ttk.Button(r3, text="Browse", command=lambda: self.browse_file(self.bg_music_path, "*.mp3 *.wav")).pack(side=tk.RIGHT) + + # --- LOGO SECTION --- + logo_frame = ttk.LabelFrame(action_frame_container, text="🖼️ Tùy Chỉnh Logo (Theo Folder Logo 0:0)", padding=10) + logo_frame.pack(fill=tk.X, expand=True, pady=5) + + logo_options_frame = ttk.Frame(logo_frame) + logo_options_frame.pack(fill=tk.X, pady=(5,0)) + + ttk.Label(logo_options_frame, text="Random Scale (%): Min").pack(side=tk.LEFT) + ttk.Spinbox(logo_options_frame, from_=50, to=300, textvariable=self.logo_scale_min, width=5).pack(side=tk.LEFT, padx=(5,0)) + ttk.Label(logo_options_frame, text="Max").pack(side=tk.LEFT, padx=(10,0)) + ttk.Spinbox(logo_options_frame, from_=50, to=300, textvariable=self.logo_scale_max, width=5).pack(side=tk.LEFT, padx=5) + + ttk.Checkbutton(logo_options_frame, text="Biến thiên vị trí Logo (Chống Spam)", variable=self.logo_random_pos).pack(side=tk.LEFT, padx=20) + + + set_frame_container = ttk.LabelFrame(content_frame, text="3. Cấu hình chi tiết", padding=10) + set_frame_container.pack(fill=tk.X, expand=True, pady=5) + set_frame = ttk.Frame(set_frame_container) + set_frame.pack(fill=tk.X, expand=True) + + sf_mode = ttk.LabelFrame(set_frame, text="Logic Bỏ Qua & Ưu Tiên", padding=10); sf_mode.pack(side=tk.LEFT, padx=5, fill=tk.Y, anchor='n') + ttk.Checkbutton(sf_mode, text="1. Bỏ qua nếu có File Video trên ổ cứng", variable=self.check_output_var).pack(anchor='w', pady=2) + ttk.Checkbutton(sf_mode, text="2. Bỏ qua nếu ĐÃ LƯU TRONG LỊCH SỬ", variable=self.check_history_var).pack(anchor='w', pady=2) + ttk.Separator(sf_mode, orient=tk.HORIZONTAL).pack(fill=tk.X, pady=5) + tk.Checkbutton(sf_mode, text="🌐 BẬT: CHIA SẺ RENDER (MULTI-PC SYNC NAS) 🌐", variable=self.enable_multi_pc_sync, bg="#ffc107", fg="black", font=("Arial", 10, "bold")).pack(anchor='w', pady=6, fill='x') + ttk.Separator(sf_mode, orient=tk.HORIZONTAL).pack(fill=tk.X, pady=5) + ttk.Checkbutton(sf_mode, text="🔄 Bật Xử Lý Xoay Vòng (Round-Robin)", variable=self.enable_round_robin).pack(anchor='w', pady=2) + r_rb = ttk.Frame(sf_mode); r_rb.pack(fill='x') + ttk.Label(r_rb, text="Ưu tiên làm").pack(side=tk.LEFT) + ttk.Spinbox(r_rb, from_=1, to=1000, textvariable=self.round_robin_batch, width=5).pack(side=tk.LEFT, padx=5) + ttk.Label(r_rb, text="Task của mỗi folder").pack(side=tk.LEFT) + + ttk.Separator(sf_mode, orient=tk.HORIZONTAL).pack(fill=tk.X, pady=5) + ttk.Label(sf_mode, text="Resolution:").pack(anchor='w') + res_values =["1280x720", "1920x1080", "720x1280", "1080x1920", "1080x1080"] + ttk.Combobox(sf_mode, textvariable=self.resolution_var, values=res_values, width=15, state="readonly").pack(anchor='w', pady=2) + + smode = ttk.LabelFrame(set_frame, text="Chế độ Ảnh/Video", padding=10); smode.pack(side=tk.LEFT, padx=5, fill=tk.Y, anchor='n') + self.smode_frame = smode + mode1_frame = ttk.LabelFrame(smode, text="1. Chế độ Ảnh Đơn (STT)"); mode1_frame.pack(anchor='w', fill='x', pady=2) + ttk.Radiobutton(mode1_frame, text="", variable=self.source_mode, value=1).pack(side=tk.LEFT) + ttk.Radiobutton(mode1_frame, text="Đơn ảnh", variable=self.mode1_type, value="Single").pack(side=tk.LEFT, padx=5) + ttk.Radiobutton(mode1_frame, text="Đa ảnh", variable=self.mode1_type, value="Multi").pack(side=tk.LEFT, padx=5) + ttk.Label(mode1_frame, text="Min(s):").pack(side=tk.LEFT, padx=(8,0)) + ttk.Spinbox(mode1_frame, from_=1.0, to=60.0, increment=0.5, textvariable=self.mode1_slide_dur_min, width=4).pack(side=tk.LEFT, padx=2) + ttk.Label(mode1_frame, text="Max(s):").pack(side=tk.LEFT) + ttk.Spinbox(mode1_frame, from_=1.0, to=60.0, increment=0.5, textvariable=self.mode1_slide_dur_max, width=4).pack(side=tk.LEFT, padx=2) + r_m2 = ttk.Frame(smode); r_m2.pack(anchor='w', fill='x', pady=2) + ttk.Radiobutton(r_m2, text="2. Slideshow (Loop ảnh)", variable=self.source_mode, value=2).pack(side=tk.LEFT) + ttk.Label(r_m2, text="SL:").pack(side=tk.LEFT); ttk.Spinbox(r_m2, from_=1, to=20, textvariable=self.mode2_amount, width=3).pack(side=tk.LEFT) + ttk.Label(r_m2, text="Min(s):").pack(side=tk.LEFT, padx=(8,0)) + ttk.Spinbox(r_m2, from_=1.0, to=60.0, increment=0.5, textvariable=self.slide_dur_min, width=4).pack(side=tk.LEFT, padx=2) + ttk.Label(r_m2, text="Max(s):").pack(side=tk.LEFT) + ttk.Spinbox(r_m2, from_=1.0, to=60.0, increment=0.5, textvariable=self.slide_dur_max, width=4).pack(side=tk.LEFT, padx=2) + r_m3 = ttk.Frame(smode); r_m3.pack(anchor='w', fill='x', pady=2) + ttk.Radiobutton(r_m3, text="3. Source Video (Loop)", variable=self.source_mode, value=3).pack(side=tk.LEFT) + ttk.Label(r_m3, text="SL:").pack(side=tk.LEFT); ttk.Spinbox(r_m3, from_=1, to=20, textvariable=self.mode3_amount, width=3).pack(side=tk.LEFT) + ttk.Combobox(r_m3, textvariable=self.mode3_type, values=["Static (Nhanh)", "Motion (Đẹp)"], width=13, state="readonly").pack(side=tk.LEFT, padx=5) + + # === MOTION & EFFECTS (Chia riêng Mode 1, Mode 2, Mode 3) === + vf = ttk.LabelFrame(set_frame, text="Motion & Effects", padding=10) + vf.pack(side=tk.LEFT, padx=5, fill=tk.Y, anchor='n') + self.motion_effects_frame = vf + + # Danh sách motion bao gồm các hiệu ứng điện ảnh nhẹ nhàng/tinh tế mới + all_motion_ops = [ + "Random", "Static", "Zoom In", "Zoom Out", "Pan Left->Right", "Pan Right->Left", + "Bồng Bềnh (Parallax)", "Bồng Bềnh Nhẹ (Romantic)", "Deep Breathe (Focus)", + "Slow Pan Diagonal", "Ken Burns (Zoom Pan)", "Drone Hover (Hình số 8)", + "Handheld (Camera cầm tay)", "Pendulum Sway (Quả lắc)", "Space Float (Phi trọng lực)" + ] + + row0 = ttk.Frame(vf) + row0.grid(row=0, column=0, columnspan=2, sticky="ew", pady=(0, 5)) + ttk.Label(row0, text="Motion Cycle (s):").pack(side=tk.LEFT) + ttk.Entry(row0, textvariable=self.vis_cycle, width=5).pack(side=tk.LEFT, padx=(5,15)) + ttk.Label(row0, text="Cường độ Zoom/Pan:").pack(side=tk.LEFT) + ttk.Scale(row0, from_=0.1, to=10.0, variable=self.motion_intensity, orient=tk.HORIZONTAL, length=100).pack(side=tk.LEFT, padx=5) + + # Motion cho Mode 1 (Anh don/da) + ttk.Label(vf, text="[M1] Mode 1 Motion:").grid(row=1, column=0, sticky="w", pady=(5,0)) + ttk.Combobox(vf, textvariable=self.mode1_motion_type, values=all_motion_ops, width=15, state="readonly").grid(row=1, column=1, pady=2) + + # Motion cho Mode 2 (Slideshow) + ttk.Label(vf, text="[M2] Mode 2 Motion:").grid(row=2, column=0, sticky="w") + ttk.Combobox(vf, textvariable=self.mode2_motion_type, values=all_motion_ops, width=15, state="readonly").grid(row=2, column=1, pady=2) + + # Motion cho Mode 3 (Video) + ttk.Label(vf, text="[M3] Mode 3 Motion:").grid(row=3, column=0, sticky="w") + ttk.Combobox(vf, textvariable=self.vis_motion_type, values=["Random", "Static", "Zoom In", "Zoom Out", "Pan Left->Right", "Pan Right->Left"], width=15, state="readonly").grid(row=3, column=1, pady=2) + + # Chuyển cảnh chung cho Mode 2 & Mode 3 Vô cực + ttk.Label(vf, text="Chuyển cảnh (M2/M3):").grid(row=4, column=0, sticky="w", pady=(5,0)) + xfade_ops = ["Random", "distance", "smoothleft", "smoothright", "smoothup", "smoothdown"] + ttk.Combobox(vf, textvariable=self.xfade_transition_type, values=xfade_ops, width=15, state="readonly").grid(row=4, column=1, pady=2) + + ttk.Separator(vf, orient=tk.HORIZONTAL).grid(row=5, column=0, columnspan=2, sticky="ew", pady=5) + + # Overlay Mode + ttk.Label(vf, text="Overlay Mode:").grid(row=6, column=0, sticky="w") + ovl_ops =["Screen"] + ttk.Combobox(vf, textvariable=self.vis_blend, values=ovl_ops, width=15, state="readonly").grid(row=6, column=1, pady=2) + ttk.Label(vf, text="Ovl Opacity:").grid(row=7, column=0, sticky="w") + ttk.Scale(vf, from_=0, to=1, variable=self.vis_opacity, orient=tk.HORIZONTAL).grid(row=7, column=1, sticky="ew") + + ttk.Separator(vf, orient=tk.HORIZONTAL).grid(row=7, column=0, columnspan=2, sticky="ew", pady=5) + + # === INTRO/OUTRO ANIMATION (Mode 1 & 2) === + ttk.Label(vf, text="[INTRO] Anim (Đầu slide):", font=("Arial", 9, "bold")).grid(row=8, column=0, sticky="w", pady=(5,0)) + intro_options = ["Random", "None"] + INTRO_EFFECTS_LIST + ttk.Combobox(vf, textvariable=self.intro_effect_type, values=intro_options, width=15, state="readonly").grid(row=8, column=1, pady=2) + ttk.Label(vf, text="Intro Duration (s):").grid(row=9, column=0, sticky="w") + ttk.Spinbox(vf, from_=1.0, to=10.0, increment=0.5, textvariable=self.intro_effect_duration, width=5).grid(row=9, column=1, sticky="w") + + ttk.Label(vf, text="[OUTRO] Anim (Cuối slide):", font=("Arial", 9, "bold"), foreground="red").grid(row=10, column=0, sticky="w", pady=(5,0)) + outro_options = ["Random", "None", "Fade Out (Tự nhiên)", "Vortex Suck Out", "TV Turn Off", "Elastic Drop", "Whip Pan Out Left", "Whip Pan Out Right", "Spin Shrink Out", "Slide Fall Down"] + ttk.Combobox(vf, textvariable=self.outro_effect_type, values=outro_options, width=15, state="readonly").grid(row=10, column=1, pady=2) + ttk.Label(vf, text="Outro Duration (s):").grid(row=11, column=0, sticky="w") + ttk.Spinbox(vf, from_=0.5, to=5.0, increment=0.5, textvariable=self.outro_effect_duration, width=5).grid(row=11, column=1, sticky="w") + + ttk.Separator(vf, orient=tk.HORIZONTAL).grid(row=12, column=0, columnspan=2, sticky="ew", pady=5) + ttk.Label(vf, text="🎬 Color Grading:", font=("Arial", 9, "bold"), foreground="#8B0000").grid(row=13, column=0, sticky="w") + grade_ops = ["None (Tự nhiên)", "Điện Ảnh Mỹ (Cam ấm, Nền xanh lạnh)", "Lãng mạn (Ám hồng, Sáng mịn)", "Cổ điển (Ám vàng đất, Ấm áp)", "Kịch tính (Tối lạnh, Đậm màu)", "Phim cũ (Phai màu, Ám vàng nhẹ)"] + ttk.Combobox(vf, textvariable=self.color_grade_preset, values=grade_ops, width=32, state="readonly").grid(row=13, column=1, pady=2, sticky="ew") + + af = ttk.LabelFrame(set_frame, text="Audio & Sub", padding=10); af.pack(side=tk.LEFT, padx=5, fill=tk.Y, anchor='n') + ttk.Checkbutton(af, text="🛡️ Lách bản quyền âm thanh", variable=self.enable_audio_evasion_var).pack(anchor='w', pady=1) + ttk.Checkbutton(af, text="Podcast EQ (Nhanh)", variable=self.enable_podcast_filter).pack(anchor='w', pady=1) + ttk.Checkbutton(af, text="Smart AI Gain (Nhanh)", variable=self.smart_audio_level).pack(anchor='w', pady=1) + r_vol = ttk.Frame(af); r_vol.pack(fill='x', pady=5) + ttk.Label(r_vol, text="Vol:").pack(side=tk.LEFT); ttk.Spinbox(r_vol, from_=0.1, to=5.0, increment=0.1, textvariable=self.voice_vol, width=4).pack(side=tk.LEFT, padx=5) + ttk.Label(r_vol, text="BGM:").pack(side=tk.LEFT); ttk.Spinbox(r_vol, from_=0.0, to=2.0, increment=0.1, textvariable=self.bgm_vol, width=4).pack(side=tk.LEFT) + ttk.Separator(af, orient=tk.HORIZONTAL).pack(fill=tk.X, pady=5) + ttk.Checkbutton(af, text="Burn Subtitles (Hardsub)", variable=self.enable_sub).pack(anchor='w') + ttk.Radiobutton(af, text="Size DYNAMIC (Nhỏ to thay đổi để điền đầy khung - Hiện tại)", variable=self.scale_mode_var, value="Dynamic").pack(anchor='w', pady=1, padx=15) + ttk.Radiobutton(af, text="Size FIXED MAX (1 Cỡ duy nhất to nhất giữ đều cả Video)", variable=self.scale_mode_var, value="FixedMax").pack(anchor='w', pady=1, padx=15) + ttk.Checkbutton(af, text="Force Arial (Debug Mode)", variable=self.force_safe_font).pack(anchor='w', pady=2) + btn_sub_frame = ttk.Frame(af); btn_sub_frame.pack(fill=tk.X, pady=2) + ttk.Button(btn_sub_frame, text="📂 Tải Style", command=self.load_style_json).pack(side=tk.LEFT, fill=tk.X, expand=True, padx=1) + ttk.Button(btn_sub_frame, text="🛠️ Sửa Style", command=self.edit_style).pack(side=tk.LEFT, fill=tk.X, expand=True, padx=1) + tk.Button(af, text="🔳 VẼ VÙNG SUB (BOUNDING BOX)", bg="#17a2b8", fg="white", font=("Arial", 9, "bold"), command=self.open_subtitle_canvas_editor).pack(fill=tk.X, expand=True, pady=4, ipady=4) + + sys_f = ttk.LabelFrame(set_frame, text="Hệ thống & Tốc độ", padding=10); sys_f.pack(side=tk.LEFT, padx=5, fill=tk.Y, anchor='n') + th_f = ttk.Frame(sys_f); th_f.pack(fill='x', pady=(0, 5)) + ttk.Label(th_f, text="Luồng GPU:").pack(side=tk.LEFT) + ttk.Spinbox(th_f, from_=0, to=72, textvariable=self.max_gpu_workers, width=4).pack(side=tk.LEFT, padx=(2,10)) + ttk.Label(th_f, text="Luồng CPU:").pack(side=tk.LEFT) + ttk.Spinbox(th_f, from_=0, to=72, textvariable=self.max_cpu_workers, width=4).pack(side=tk.LEFT, padx=(2,0)) + ttk.Label(sys_f, text="Video Encoder:").pack(anchor='w') + self.encoder_combobox = ttk.Combobox(sys_f, textvariable=self.video_encoder_var, width=28, state="readonly"); self.encoder_combobox.pack(anchor='w') + self.update_encoder_list() + + size_control_frame = ttk.LabelFrame(sys_f, text="Kiểm Soát Kích Thước File", padding=5) + size_control_frame.pack(fill="x", pady=5, expand=True) + r_ts = ttk.Frame(size_control_frame); r_ts.pack(fill='x', pady=2) + ttk.Checkbutton(r_ts, text="Auto Bitrate (Target MB):", variable=self.enable_target_size).pack(side=tk.LEFT) + ttk.Spinbox(r_ts, from_=10, to=5000, textvariable=self.target_size_mb, width=6).pack(side=tk.LEFT, padx=5) + ttk.Label(r_ts, text="MB").pack(side=tk.LEFT) + r_br = ttk.Frame(size_control_frame); r_br.pack(fill='x', pady=2) + ttk.Label(r_br, text="Bitrate Thủ công (k): ", anchor="w").pack(side=tk.LEFT) + ttk.Entry(r_br, textvariable=self.target_bitrate, width=6).pack(side=tk.LEFT, padx=5) + ttk.Separator(size_control_frame, orient=tk.HORIZONTAL).pack(fill=tk.X, pady=(5, 2)) + ttk.Checkbutton(size_control_frame, text="Tối ưu Livestream (CBR)", variable=self.enable_livestream_mode).pack(anchor='w') + + ttk.Checkbutton(sys_f, text="Anti-Spam Loop (Lật hình)", variable=self.enable_anti_spam_loop).pack(anchor='w', pady=5) + self.lbl_info = ttk.Label(sys_f, text="Session Auto-Save v9.0 (ONE-PASS)", foreground="blue"); self.lbl_info.pack(pady=5) + + # ===================================================================== + # 🌟 CLUSTER GLOBAL PROGRESS DASHBOARD (MOST 2026 UI) + # ===================================================================== + self.dashboard_frame = tk.Frame(content_frame, bg="#0b0f19", bd=2, relief="ridge", highlightbackground="#00ffcc", highlightthickness=1) + self.dashboard_frame.pack(fill=tk.X, expand=False, pady=10) + + # Header Dashboard + dash_hdr = tk.Frame(self.dashboard_frame, bg="#0b0f19") + dash_hdr.pack(fill=tk.X, padx=15, pady=(10, 5)) + tk.Label(dash_hdr, text="🌐 RADAR GIÁM SÁT TIẾN ĐỘ RENDER TRẠM (GLOBAL CLUSTER WATCHDOG)", font=("Segoe UI", 12, "bold"), fg="#00ffcc", bg="#0b0f19").pack(side=tk.LEFT) + + self.lbl_last_check = tk.Label(dash_hdr, text="Cập nhật lần cuối: Chưa quét", font=("Consolas", 10, "italic"), fg="#8b949e", bg="#0b0f19") + self.lbl_last_check.pack(side=tk.RIGHT) + + # Body Dashboard + dash_body = tk.Frame(self.dashboard_frame, bg="#0b0f19") + dash_body.pack(fill=tk.X, padx=15, pady=(0, 15)) + + # Text Tiến độ bự chà bá + self.lbl_big_progress = tk.Label(dash_body, text="0 / 0", font=("Segoe UI", 36, "bold"), fg="#ffffff", bg="#0b0f19", width=10, anchor="e") + self.lbl_big_progress.pack(side=tk.LEFT, padx=(0, 20)) + + # Thanh Progress Bar + bar_frame = tk.Frame(dash_body, bg="#0b0f19") + bar_frame.pack(side=tk.LEFT, fill=tk.BOTH, expand=True) + + self.global_progress_var = tk.DoubleVar() + # Dùng Canvas để vẽ thanh Progress Bar custom cho đẹp chuẩn 2026 + self.prog_canvas = tk.Canvas(bar_frame, height=25, bg="#161b22", highlightthickness=0) + self.prog_canvas.pack(fill=tk.X, pady=(15, 5)) + self.prog_rect = self.prog_canvas.create_rectangle(0, 0, 0, 25, fill="#00ff88", outline="") + + # Status Label + self.lbl_global_status = tk.Label(bar_frame, text="Trạng thái: 💤 Đang chờ khởi chạy nhiệm vụ...", font=("Segoe UI", 11, "bold"), fg="#8b949e", bg="#0b0f19") + self.lbl_global_status.pack(anchor="w") + + # Nút Force Check & Config + btn_frame_dash = tk.Frame(dash_body, bg="#0b0f19") + btn_frame_dash.pack(side=tk.RIGHT, padx=(20, 0)) + + tk.Button(btn_frame_dash, text="🔄 QUÉT ÉP BUỘC NOW", font=("Segoe UI", 10, "bold"), bg="#1f6feb", fg="white", activebackground="#388bfd", relief="flat", cursor="hand2", command=self._force_watchdog_scan, padx=10, pady=5).pack(side=tk.TOP, fill=tk.X, pady=(10,5)) + + # Ẩn Dashboard mặc định, chỉ hiện khi chạy Master hoặc Cục bộ + self.dashboard_frame.pack_forget() + # ===================================================================== + + mid_frame = ttk.LabelFrame(content_frame, text="4. Danh sách chờ Render (Ctrl/Shift + Click để chọn nhiều)", padding=10) + mid_frame.pack(fill=tk.BOTH, expand=True, pady=5) + + # Sửa lỗi mất khung Scrollbar: Cho Treeview và Scrollbar vào một container riêng biệt. + tree_container = ttk.Frame(mid_frame) + tree_container.pack(side=tk.TOP, fill=tk.BOTH, expand=True) + + tree_cols = ("ID", "Group", "Name", "Type", "Status", "Info"); self.tree = ttk.Treeview(tree_container, columns=tree_cols, show="headings", height=15, selectmode="extended") + self.tree.heading("ID", text="#"); self.tree.column("ID", width=40, anchor='center') + self.tree.heading("Group", text="Mapping Group"); self.tree.column("Group", width=120) + self.tree.heading("Name", text="Task Name / File"); self.tree.column("Name", width=300) + self.tree.heading("Type", text="Source Type"); self.tree.column("Type", width=100) + self.tree.heading("Status", text="Status"); self.tree.column("Status", width=120) + self.tree.heading("Info", text="Details"); self.tree.column("Info", width=400) + + # Thanh cuộn bự dễ xài + scroll = tk.Scrollbar(tree_container, orient="vertical", command=self.tree.yview, width=25) + self.tree.configure(yscrollcommand=scroll.set) + scroll.pack(side=tk.RIGHT, fill=tk.Y) + self.tree.pack(side=tk.LEFT, fill=tk.BOTH, expand=True) + + ctrl_frame = ttk.Frame(mid_frame, padding=5) + ctrl_frame.pack(side=tk.BOTTOM, fill=tk.X, expand=False) + tk.Button(ctrl_frame, text="⏫ ĐẨY LÊN ĐẦU (Ưu tiên nhất)", bg="#ffc107", font=("Arial", 9, "bold"), command=self.move_task_top).pack(side=tk.LEFT, padx=5, ipady=3) + ttk.Button(ctrl_frame, text="⬆ Lên 1 Bậc", command=self.move_task_up).pack(side=tk.LEFT, padx=2) + ttk.Button(ctrl_frame, text="⬇ Xuống 1 Bậc", command=self.move_task_down).pack(side=tk.LEFT, padx=2) + ttk.Button(ctrl_frame, text="⏬ Xuống Cuối", command=self.move_task_bottom).pack(side=tk.LEFT, padx=2) + tk.Button(ctrl_frame, text="❌ XÓA TASK", bg="#dc3545", fg="white", font=("Arial", 9, "bold"), command=self.delete_task).pack(side=tk.RIGHT, padx=5, ipady=3) + + bot_frame = ttk.LabelFrame(self.bottom_dock, text="5. Console Log & Error Details (DEBUG MODE)", padding=5) + bot_frame.pack(fill=tk.X, expand=False, pady=5) + + # === ⚡ RENDER SPEED MONITOR WIDGET === + spd_frame = tk.Frame(bot_frame, bg="#0d0d0d", bd=2, relief="sunken") + spd_frame.pack(fill=tk.X, padx=2, pady=(0,4)) + # Header + tk.Label(spd_frame, text="⚡ RENDER SPEED MONITOR", bg="#0d0d0d", fg="#888888", + font=("Consolas", 8, "bold")).pack(side=tk.LEFT, padx=8) + # RTF display + self.lbl_rtf = tk.Label(spd_frame, text="RTF: —", bg="#0d0d0d", fg="#00ff88", + font=("Consolas", 14, "bold"), width=12) + self.lbl_rtf.pack(side=tk.LEFT, padx=6) + # Video done + self.lbl_vdone = tk.Label(spd_frame, text="Video đã xong: —", bg="#0d0d0d", fg="#ffcc00", + font=("Consolas", 10), width=20) + self.lbl_vdone.pack(side=tk.LEFT, padx=6) + # Wall elapsed + self.lbl_wall = tk.Label(spd_frame, text="Thực tế: —", bg="#0d0d0d", fg="#aaaaaa", + font=("Consolas", 10), width=16) + self.lbl_wall.pack(side=tk.LEFT, padx=6) + # ETA + self.lbl_eta = tk.Label(spd_frame, text="ETA: —", bg="#0d0d0d", fg="#ff8844", + font=("Consolas", 10), width=24) + self.lbl_eta.pack(side=tk.LEFT, padx=6) + # Segment counter + self.lbl_segs = tk.Label(spd_frame, text="Segs: 0", bg="#0d0d0d", fg="#8888ff", + font=("Consolas", 9), width=10) + self.lbl_segs.pack(side=tk.RIGHT, padx=8) + # Start update loop + self._start_render_speed_monitor() + + self.log_txt = scrolledtext.ScrolledText(bot_frame, height=5, bg="#1e1e1e", fg="#00ff00", font=("Consolas", 10)); self.log_txt.pack(fill=tk.BOTH, expand=True) + + def _sync_internal_lists_from_tree(self): + with self.task_lock: + new_tasks_list =[] + new_pending =[] + task_map = {t['idx']: t for t in self.tasks_list} + + for item_id in self.tree.get_children(): + task = task_map.get(item_id) + if task: + new_tasks_list.append(task) + status = self.tree.item(item_id)['values'][4] + if status == "Waiting": + new_pending.append(task) + + self.tasks_list = new_tasks_list + if self.processing: + self.pending_tasks = new_pending + + def move_task_top(self): + selected_items = self.tree.selection() + if not selected_items: return + for item in reversed(selected_items): + self.tree.move(item, '', 0) + self._sync_internal_lists_from_tree() + + def move_task_bottom(self): + selected_items = self.tree.selection() + if not selected_items: return + for item in selected_items: + self.tree.move(item, '', 'end') + self._sync_internal_lists_from_tree() + + def move_task_up(self): + selected_items = self.tree.selection() + if not selected_items: return + indices = [self.tree.index(item) for item in selected_items] + if min(indices) == 0: return + for item in selected_items: + current_index = self.tree.index(item) + self.tree.move(item, '', current_index - 1) + self._sync_internal_lists_from_tree() + + def move_task_down(self): + selected_items = self.tree.selection() + if not selected_items: return + children = self.tree.get_children() + indices =[self.tree.index(item) for item in selected_items] + if max(indices) >= len(children) - 1: return + for item in reversed(selected_items): + current_index = self.tree.index(item) + self.tree.move(item, '', current_index + 1) + self._sync_internal_lists_from_tree() + + def delete_task(self): + for item in self.tree.selection(): + status = self.tree.item(item)['values'][4] + if status in["Waiting", "Error", "Skipped"]: + self.tree.delete(item) + else: + self.log(f"⚠️ Không thể xóa task đang ở trạng thái: {status}") + self._sync_internal_lists_from_tree() + + def blink_status_light(self): + if self.processing: + current_color = self.status_canvas.itemcget(self.status_light, "fill") + next_color = "#00ff00" if current_color == "grey" else "grey" + self.status_canvas.itemconfig(self.status_light, fill=next_color); self.status_canvas.itemconfig(self.status_label, text="RENDERING") + else: + self.status_canvas.itemconfig(self.status_light, fill="red"); self.status_canvas.itemconfig(self.status_label, text="STOP/IDLE") + self.after(500, self.blink_status_light) + + def update_encoder_list(self): + # Chạy kiểm tra Encoder ở luồng ẩn để không Block UI khi khởi động + def _task(): + encoders = self.get_available_encoders(self.ffmpeg_path.get()) + display_values =[v for k, v in encoders.items()] + def _apply(): + self.encoder_combobox['values'] = display_values + self._encoder_map = {v: k for k, v in encoders.items()} + self._encoder_map_reverse = {k: v for k, v in encoders.items()} + current_choice_key = self.video_encoder_var.get() + if current_choice_key in self._encoder_map_reverse: + self.encoder_combobox.set(self._encoder_map_reverse[current_choice_key]) + else: + self.encoder_combobox.set(encoders["Auto-Detect"]) + self.after(0, _apply) + threading.Thread(target=_task, daemon=True).start() + + def log(self, msg): self.msg_queue.put(("log", msg)) + + def _update_ui_by_role(self): + """Thay đổi giao diện dựa trên vai trò được chọn.""" + role = self.app_role.get() + # Reset trước + self.btn_start.pack_forget() + self.btn_worker.pack_forget() + self.worker_opt_frame.pack_forget() + self.nas_frame.pack_forget() + + if role == "LOCAL": + self.enable_cluster_render.set(False) + self.btn_scan.config(state=tk.NORMAL) + self.btn_start.pack(side=tk.LEFT, fill=tk.X, expand=True, padx=5, ipady=5, before=self.btn_scan) + self.btn_start.config(text="▶ 2. RENDER CỤC BỘ", bg="#28a745", fg="white") + elif role == "MASTER": + self.enable_cluster_render.set(True) + self.nas_frame.pack(fill=tk.X, padx=10, pady=2) + self.btn_scan.config(state=tk.NORMAL) + self.btn_start.pack(side=tk.LEFT, fill=tk.X, expand=True, padx=5, ipady=5, before=self.btn_scan) + self.btn_start.config(text="📤 2. ĐẨY NHIỆM VỤ LÊN NAS (CHỈ HUY)", bg="#d97b00", fg="white") + elif role == "WORKER": + self.enable_cluster_render.set(False) + self.nas_frame.pack(fill=tk.X, padx=10, pady=2) + self.btn_scan.config(state=tk.DISABLED) + self.btn_worker.pack(side=tk.LEFT, fill=tk.X, expand=True, padx=5, ipady=8) + self.worker_opt_frame.pack(side=tk.LEFT, padx=10) + + if role == "MASTER" or role == "LOCAL": + self.dashboard_frame.pack(fill=tk.X, expand=False, pady=10, before=getattr(self, 'tree_container', None)) + else: # WORKER + self.dashboard_frame.pack_forget() + + def process_ui_queue(self): + try: + while not self.msg_queue.empty(): + cmd, data = self.msg_queue.get_nowait() + if cmd == "log": + self.log_txt.insert(tk.END, f"[{datetime.now().strftime('%H:%M:%S')}] {data}\n"); self.log_txt.see(tk.END) + elif cmd == "status": + idx, status, info = data + if self.tree.exists(idx): + self.tree.set(idx, "Status", status); self.tree.set(idx, "Info", info) + # Worker: đẩy tiến trình lên NAS bất đồng bộ (non-blocking, không chờ mạng) + if getattr(self, "is_worker_mode", False): + def _push_prog(): + try: + NAS_Q = self.nas_queue_path.get().strip() + if not NAS_Q: return + import socket as _sk2, json as _jp + prog_dir = os.path.join(NAS_Q, "PROGRESS") + os.makedirs(prog_dir, exist_ok=True) + pf = os.path.join(prog_dir, f"PROG_{_sk2.gethostname()}.json") + tmp = pf + ".tmp" + with open(tmp, "w", encoding="utf-8") as f: + _jp.dump({"worker":_sk2.gethostname(),"status":status,"info":info,"time":__import__('time').time()}, f, ensure_ascii=False) + os.replace(tmp, pf) + except: pass + threading.Thread(target=_push_prog, daemon=True).start() + elif cmd == "task_done": + history_key = data + # Chống đè History JSON giữa các máy: Merge từ ổ cứng vào RAM trước khi lưu đè + path = self.project_file_path.get() + if path and os.path.exists(path): + try: + with open(path, 'r', encoding='utf-8') as f: + disk_data = json.load(f) + if "history" in disk_data and isinstance(disk_data["history"], dict): + self.session_data["history"].update(disk_data["history"]) + except: pass + + self.session_data["history"][history_key] = datetime.now().strftime("%Y-%m-%d %H:%M:%S") + self.save_project_file(silent=True) + elif cmd == "history_skipped": + self.skip_count += 1 + elif cmd == "finish_batch": + self.processing = False; self.btn_start.config(state=tk.NORMAL) + duration = datetime.now() - self.start_time + summary = f"🎉 QUY TRÌNH HOÀN TẤT!\n\n⏱️ Thời gian: {str(duration).split('.')[0]}\n✅ Render Mới: {self.success_count}\n⏭️ Bỏ qua (Lịch sử/Đã có): {self.skip_count}\n❌ Thất bại: {self.fail_count}\n\nLịch sử đã được đồng bộ." + messagebox.showinfo("Hoàn tất", summary) + elif cmd == "error_batch": + self.processing = False; self.btn_start.config(state=tk.NORMAL); messagebox.showerror("Lỗi Nghiêm Trọng", data) + except queue.Empty: pass + finally: self.after(100, self.process_ui_queue) + + def load_global_config(self): + if os.path.exists(GLOBAL_CONFIG_FILE): + try: + with open(GLOBAL_CONFIG_FILE, 'r') as f: + data = json.load(f) + last_proj = data.get("last_project", "") + if last_proj and os.path.exists(last_proj): + self.project_file_path.set(last_proj) + self.hf_token_var.set(data.get("hf_token", "")) + self.hf_repo_var.set(data.get("hf_repo", "")) + except: pass + + def save_global_config(self): + try: + with open(GLOBAL_CONFIG_FILE, 'w') as f: + json.dump({ + "last_project": self.project_file_path.get(), + "hf_token": self.hf_token_var.get(), + "hf_repo": self.hf_repo_var.get(), + }, f) + except: pass + + def load_project_file(self, file_path=None): + if not file_path: file_path = self.project_file_path.get() + if not file_path or not os.path.exists(file_path): return + + try: + with open(file_path, 'r', encoding='utf-8') as f: + data = json.load(f) + + self.session_data = data + if "history" not in self.session_data: self.session_data["history"] = {} + if "settings" not in self.session_data: self.session_data["settings"] = {} + + s = self.session_data["settings"] + self.ffmpeg_path.set(s.get("ffmpeg_path", "ffmpeg")); self.ffprobe_path.set(s.get("ffprobe_path", "")) + self.realesrgan_path.set(s.get("realesrgan_path", "C:/ffmpeg/bin/realesrgan-ncnn-vulkan.exe")) + self.enable_ai_upscale.set(s.get("enable_ai_upscale", True)) + self.temp_dir_path.set(s.get("temp_dir", DEFAULT_TEMP_DIR)) + self.txt_inputs.delete("1.0", tk.END); self.txt_inputs.insert("1.0", s.get("txt_inputs", "")) + self.txt_sub_json.delete("1.0", tk.END); self.txt_sub_json.insert("1.0", s.get("txt_sub_json", "")) + if hasattr(self, 'txt_logos'): self.txt_logos.delete("1.0", tk.END); self.txt_logos.insert("1.0", s.get("txt_logos", "")) + self.txt_images.delete("1.0", tk.END); self.txt_images.insert("1.0", s.get("txt_images", "")) + self.txt_outputs.delete("1.0", tk.END); self.txt_outputs.insert("1.0", s.get("txt_outputs", "")) + self.overlay_path.set(s.get("overlay", "")); self.logo_path.set(s.get("logo", "")); self.bg_music_path.set(s.get("bg_music", "")); self.intro_path.set(s.get("intro_path", "")) + self.voice_vol.set(s.get("voice_vol", 1.5)); self.bgm_vol.set(s.get("bgm_vol", 0.3)); self.enable_podcast_filter.set(s.get("podcast_filter", False)); self.smart_audio_level.set(s.get("smart_audio", True)); self.target_bitrate.set(s.get("bitrate", "2500")); self.enable_target_size.set(s.get("enable_target_size", False)); self.target_size_mb.set(s.get("target_size_mb", 400)); self.source_mode.set(s.get("source_mode", 3)); self.slide_dur_min.set(s.get("slide_dur_min", 3.0)); self.slide_dur_max.set(s.get("slide_dur_max", 6.0)) + self.mode1_slide_dur_min.set(s.get("mode1_slide_dur_min", 5.0)); self.mode1_slide_dur_max.set(s.get("mode1_slide_dur_max", 8.0)) + self.enable_livestream_mode.set(s.get("livestream_mode", False)); self.mode1_type.set(s.get("mode1_type", "Single")) + self.mode3_type.set(s.get("mode3_type", "Static (Fast)")) + self.vis_cycle.set(s.get("vis_cycle", 10.0)) + self.motion_intensity.set(s.get("motion_intensity", 1.0)) + self.vis_motion_type.set(s.get("vis_motion_type", "Random")) + self.enable_audio_evasion_var.set(s.get("audio_evasion", False)) + self.check_output_var.set(s.get("check_output", True)); self.check_history_var.set(s.get("check_history", True)) + self.enable_multi_pc_sync.set(s.get("multi_pc_sync", False)) + self.enable_round_robin.set(s.get("enable_round_robin", False)); self.round_robin_batch.set(s.get("round_robin_batch", 50)) + self.video_encoder_var.set(s.get("video_encoder", "Auto-Detect")); self.enable_anti_spam_loop.set(s.get("anti_spam_loop", True)); self.resolution_var.set(s.get("resolution", "1280x720")); self.enable_sub.set(s.get("enable_sub", True)) + self.scale_mode_var.set(s.get("scale_mode", "Dynamic")) + self.logo_scale_min.set(s.get("logo_scale_min", 100)) + self.logo_scale_max.set(s.get("logo_scale_max", 120)) + self.logo_random_pos.set(s.get("logo_random_pos", True)) + # --- Feature 1: Segmented Overlay --- + self.enable_segmented_overlay.set(s.get("enable_segmented_overlay", False)) + self.overlay_seg_min.set(s.get("overlay_seg_min", 10)) + self.overlay_seg_max.set(s.get("overlay_seg_max", 30)) + # --- Feature 2: Motion riêng Mode 1 & 2 --- + self.mode1_motion_type.set(s.get("mode1_motion_type", "Random")) + self.mode2_motion_type.set(s.get("mode2_motion_type", "Random")) + self.xfade_transition_type.set(s.get("xfade_transition_type", "Random")) + # --- Feature 3: Intro Effect --- + self.intro_effect_type.set(s.get("intro_effect_type", "Random")) + self.intro_effect_duration.set(s.get("intro_effect_duration", 3.0)) + self.color_grade_preset.set(s.get("color_grade_preset", "Điện Ảnh Mỹ (Cam ấm, Nền xanh lạnh)")) + self.outro_effect_type.set(s.get("outro_effect_type", "None")) + self.outro_effect_duration.set(s.get("outro_effect_duration", 2.0)) + # --- NAS Scan Mode B --- + self.input_mode_var.set(s.get("input_mode", "multi_folder")) + if hasattr(self, 'txt_nas_inputs'): + self.txt_nas_inputs.delete("1.0", tk.END); self.txt_nas_inputs.insert("1.0", s.get("txt_nas_inputs", "")) + self.txt_nas_sub_json.delete("1.0", tk.END); self.txt_nas_sub_json.insert("1.0", s.get("txt_nas_sub_json", "")) + + # -----> LOAD LOGO Mode B <----- + if hasattr(self, 'txt_nas_logos'): + self.txt_nas_logos.delete("1.0", tk.END); self.txt_nas_logos.insert("1.0", s.get("txt_nas_logos", "")) + self.nas_overlay_dir_var.set(s.get("nas_overlay_dir", "")) + if hasattr(self, "nas_motion_type"): + self.nas_motion_type.set(s.get("nas_motion_type", "Random")) + self.nas_transition_type.set(s.get("nas_transition_type", "Random")) + self._toggle_input_mode() + + if "style" in s and isinstance(s["style"], dict): self.srt_settings.update(s["style"]) + self.update_encoder_list() + self.log(f"✅ Đã tải Session thành công. Lịch sử có {len(self.session_data['history'])} mục.") + except Exception as e: + self.log(f"Lỗi khi tải project: {e}") + + def save_project_file(self, silent=False): + path = self.project_file_path.get() + if not path: return + + selected_display_value = self.encoder_combobox.get() + encoder_key = self._encoder_map.get(selected_display_value, "Auto-Detect") + + self.session_data["settings"] = { + "ffmpeg_path": self.ffmpeg_path.get(), "ffprobe_path": self.ffprobe_path.get(), "temp_dir": self.temp_dir_path.get(), + "realesrgan_path": self.realesrgan_path.get(), "enable_ai_upscale": self.enable_ai_upscale.get(), + "txt_inputs": self.txt_inputs.get("1.0", tk.END).strip(), "txt_sub_json": self.txt_sub_json.get("1.0", tk.END).strip(), + "txt_logos": self.txt_logos.get("1.0", tk.END).strip() if hasattr(self, 'txt_logos') else "", + "txt_images": self.txt_images.get("1.0", tk.END).strip(), "txt_outputs": self.txt_outputs.get("1.0", tk.END).strip(), + "overlay": self.overlay_path.get(), "logo": self.logo_path.get(), "bg_music": self.bg_music_path.get(), "intro_path": self.intro_path.get(), + "voice_vol": self.voice_vol.get(), "bgm_vol": self.bgm_vol.get(), "podcast_filter": self.enable_podcast_filter.get(), "smart_audio": self.smart_audio_level.get(), + "bitrate": self.target_bitrate.get(), "enable_target_size": self.enable_target_size.get(), "target_size_mb": self.target_size_mb.get(), "source_mode": self.source_mode.get(), + "slide_dur_min": self.slide_dur_min.get(), "slide_dur_max": self.slide_dur_max.get(), "mode1_slide_dur_min": self.mode1_slide_dur_min.get(), "mode1_slide_dur_max": self.mode1_slide_dur_max.get(), + "mode2_amount": self.mode2_amount.get(), "mode3_amount": self.mode3_amount.get(), + "mode3_type": self.mode3_type.get(), "vis_cycle": self.vis_cycle.get(), "motion_intensity": self.motion_intensity.get(), "vis_motion_type": self.vis_motion_type.get(), "vis_blend": self.vis_blend.get(), + "vis_opacity": self.vis_opacity.get(), "audio_evasion": self.enable_audio_evasion_var.get(), + "check_output": self.check_output_var.get(), "check_history": self.check_history_var.get(), "multi_pc_sync": self.enable_multi_pc_sync.get(), + "enable_round_robin": self.enable_round_robin.get(), "round_robin_batch": self.round_robin_batch.get(), + "video_encoder": encoder_key, "anti_spam_loop": self.enable_anti_spam_loop.get(), "resolution": self.resolution_var.get(), "enable_sub": self.enable_sub.get(), "scale_mode": self.scale_mode_var.get(), + "style": self.srt_settings, "livestream_mode": self.enable_livestream_mode.get(), "mode1_type": self.mode1_type.get(), + "logo_scale_min": self.logo_scale_min.get(), + "logo_scale_max": self.logo_scale_max.get(), + "logo_random_pos": self.logo_random_pos.get(), + # --- Feature 1: Segmented Overlay --- + "enable_segmented_overlay": self.enable_segmented_overlay.get(), + "overlay_seg_min": self.overlay_seg_min.get(), + "overlay_seg_max": self.overlay_seg_max.get(), + # --- Feature 2: Motion riêng Mode 1 & 2 --- + "mode1_motion_type": self.mode1_motion_type.get(), + "mode2_motion_type": self.mode2_motion_type.get(), + "xfade_transition_type": self.xfade_transition_type.get(), + # --- Feature 3: Intro Effect --- + "intro_effect_type": self.intro_effect_type.get(), + "intro_effect_duration": self.intro_effect_duration.get(), "color_grade_preset": self.color_grade_preset.get(), + "outro_effect_type": self.outro_effect_type.get(), + "outro_effect_duration": self.outro_effect_duration.get(), + # --- NAS Scan Mode B --- + "input_mode": self.input_mode_var.get(), + "txt_nas_inputs": self.txt_nas_inputs.get("1.0", tk.END).strip() if hasattr(self, 'txt_nas_inputs') else "", + "txt_nas_sub_json": self.txt_nas_sub_json.get("1.0", tk.END).strip() if hasattr(self, 'txt_nas_sub_json') else "", + + # -----> SAVE LOGO Mode B <----- + "txt_nas_logos": self.txt_nas_logos.get("1.0", tk.END).strip() if hasattr(self, 'txt_nas_logos') else "", + "nas_overlay_dir": self.nas_overlay_dir_var.get(), + "nas_motion_type": getattr(self, "nas_motion_type", tk.StringVar(value="Random")).get(), + "nas_transition_type": getattr(self, "nas_transition_type", tk.StringVar(value="Random")).get(), + } + + tmp_path = path + ".tmp" + try: + with open(tmp_path, "w", encoding='utf-8') as f: + json.dump(self.session_data, f, indent=4, ensure_ascii=False) + f.flush() + os.fsync(f.fileno()) + os.replace(tmp_path, path) + self.save_global_config() + if not silent: self.log("💾 Đã lưu phiên làm việc an toàn.") + except Exception as e: + if not silent: self.log(f"Lỗi khi lưu Project: {e}") + + def save_project_as(self): + f = filedialog.asksaveasfilename(defaultextension=".json", title="Lưu File Session Mới", filetypes=[("JSON files", "*.json")]) + if f: + self.project_file_path.set(f) + self.save_project_file(silent=False) + messagebox.showinfo("Lưu thành công", f"Đã lưu session vào:\n{f}") + + def open_project_file(self): + f = filedialog.askopenfilename(title="Chọn File Session", filetypes=[("JSON files", "*.json")]) + if f: + self.project_file_path.set(f) + self.load_project_file(f) + self.save_global_config() + + def clear_history(self): + if messagebox.askyesno("Cảnh báo", "Bạn có chắc muốn XÓA TOÀN BỘ Lịch sử render trong Project này? Tool sẽ render lại từ đầu."): + self.session_data["history"] = {} + self.save_project_file() + self.log("🗑️ Đã xóa lịch sử render.") + + def browse_ffmpeg(self): + f = filedialog.askopenfilename(title="Select ffmpeg executable", filetypes=[("Executable", FFMPEG_EXE_NAME), ("All files", "*.*")]) + if f: self.ffmpeg_path.set(f); self.ffprobe_path.set(f.replace(FFMPEG_EXE_NAME, FFPROBE_EXE_NAME)); self.check_env(); self.update_encoder_list() + + def browse_folder(self, var): d = filedialog.askdirectory(); d and var.set(d) + def browse_file(self, var, ftypes): f = filedialog.askopenfilename(filetypes=[("Files", ftypes)]); f and var.set(f) + def append_folder_to_text(self, text_widget): d = filedialog.askdirectory(); d and text_widget.insert(tk.END, ("\n" if text_widget.get("1.0", tk.END).strip() else "") + d) + def get_paths_from_widget(self, widget): raw = widget.get("1.0", tk.END).strip(); return[p.strip() for p in raw.split('\n') if p.strip()] if raw else[] + def check_env(self): ff_bin = self.ffmpeg_path.get(); self.btn_start.config(state=tk.NORMAL if os.path.exists(ff_bin) else tk.DISABLED); self.lbl_info.config(text="FFMPEG NOT FOUND!" if not os.path.exists(ff_bin) else self.lbl_info.cget('text'), foreground="red" if not os.path.exists(ff_bin) else "blue") + + + + def edit_style(self): editor = AdvancedSRTEditor(self, self.srt_settings); self.wait_window(editor); editor.result and setattr(self, 'srt_settings', editor.result) and self.log("✅ Style phụ đề (test) đã được cập nhật.") + def load_style_json(self): + file_path = filedialog.askopenfilename(title="Chọn file Style JSON", filetypes=[("JSON files", "*.json")]) + if not file_path: return + try: + with open(file_path, 'r', encoding='utf-8') as f: data = json.load(f) + if not isinstance(data, dict): raise ValueError("File JSON không hợp lệ.") + if "fontname" not in data: messagebox.showwarning("Cảnh báo", "File JSON có vẻ không phải là file style.") + self.srt_settings.update(data); self.log(f"✅ Tải thành công style (test) từ: {os.path.basename(file_path)}"); messagebox.showinfo("Thành công", "Đã nạp style phụ đề (dùng cho Sửa Style).") + except Exception as e: messagebox.showerror("Lỗi", f"Không thể đọc file style: {e}") + + def open_subtitle_canvas_editor(self): + try: + res_str = self.resolution_var.get().lower().split('x') + w, h = int(res_str[0]), int(res_str[1]) + except: + w, h = 1280, 720 + + editor = SubtitleCanvasEditor(self, self.srt_settings, w, h) + self.wait_window(editor) + if editor.result_bbox is not None: + if len(editor.result_bbox) == 4: + self.srt_settings["bounding_box"] = editor.result_bbox + self.log(f"✅ Vùng Subtitle đã được đặt: {editor.result_bbox}") + else: + self.srt_settings.pop("bounding_box", None) + self.log("✅ Đã XÓA vùng Subtitle.") + + def extract_stt(self, text): + match = re.match(r'^(\d+)', text) + return match.group(1) if match else None + + def scan_and_load_tasks(self): + if getattr(self, "processing", False): + messagebox.showwarning("Notice", "Hệ thống đang xử lý, vui lòng đợi!") + return + input_list = self.get_paths_from_widget(self.txt_inputs); sub_json_list = self.get_paths_from_widget(self.txt_sub_json); logo_list = self.get_paths_from_widget(self.txt_logos); image_list = self.get_paths_from_widget(self.txt_images); output_list = self.get_paths_from_widget(self.txt_outputs) + if not input_list: messagebox.showerror("Error", "Chưa nhập Input Paths!"); return + + self.btn_start.config(state=tk.DISABLED) + self.log("🔍 Đang quét dữ liệu từ NAS/Ổ cứng trong nền... Vui lòng chờ!") + threading.Thread(target=self._scan_thread_worker, args=(input_list, sub_json_list, logo_list, image_list, output_list), daemon=True).start() + + def _scan_thread_worker(self, input_list, sub_json_list, logo_list, image_list, output_list): + new_tasks = [] + valid_audio_exts = ('.mp3', '.wav', '.m4a', '.mp4') + json_cache = {} + missing_count = 0 + + for i, input_dir in enumerate(input_list): + if not os.path.isdir(input_dir): self.log(f"⚠️ Lỗi: Đường dẫn Input không tồn tại: {input_dir}"); continue + spec_sub = sub_json_list[i] if i < len(sub_json_list) else "" + spec_logo = logo_list[i] if i < len(logo_list) else "" + spec_img = image_list[i] if i < len(image_list) else (image_list[-1] if image_list else "") + spec_out = output_list[i] if i < len(output_list) else (output_list[-1] if output_list else "") + if not spec_out: self.log(f"⚠️ Bỏ qua Group {i+1} vì thiếu đường dẫn Output."); continue + + group_idx = i + 1 + group_name = f"Group {group_idx}" + self.log(f"Đang quét {group_name}: Input='{input_dir}'") + + if spec_sub and spec_sub not in json_cache: + try: json_cache[spec_sub] = [os.path.join(spec_sub, fn) for fn in os.listdir(spec_sub) if fn.lower().endswith('.json')] + except: json_cache[spec_sub] = [] + + try: files = [f for f in os.listdir(input_dir) if os.path.isfile(os.path.join(input_dir, f))] + except OSError as e: self.log(f"Lỗi không thể đọc thư mục {input_dir}: {e}"); continue + + audio_files = [f for f in files if f.lower().endswith(valid_audio_exts)] + for aud_name in audio_files: + stt = self.extract_stt(aud_name) + task_id = str(uuid.uuid4()) + history_key = f"Group_{group_idx}_{aud_name}" + + json_path_found = None + if spec_sub and json_cache.get(spec_sub): + json_path_found = random.choice(json_cache[spec_sub]) + + task = { + "id": task_id, "idx": "", "name": aud_name, "stt": stt, "group_index": group_idx, + "history_key": history_key, "path_audio_srt": input_dir, + "specific_srt_json_root": spec_sub, "specific_logo_root": spec_logo, "specific_image_root": spec_img, "path_json_style": json_path_found, "specific_output_root": spec_out, "target_filename": aud_name, + "info_text": f"STT: {stt}" + (f" | JSON: {os.path.basename(json_path_found)}" if json_path_found else "") + } + new_tasks.append((task, group_name, aud_name)) + + # Phục hồi UI sau khi quét xong (chạy trên main thread) + self.after(0, self._finalize_scan_ui, new_tasks) + + def _finalize_scan_ui(self, new_tasks): + with self.task_lock: + self.tree.delete(*self.tree.get_children()) + self.tasks_list = [] + found_count = 0 + for item in new_tasks: + task, group_name, aud_name = item + item_id = self.tree.insert("", "end", values=(found_count+1, group_name, aud_name, "File", "Waiting", task["info_text"])) + task["idx"] = item_id + self.tasks_list.append(task) + found_count += 1 + self.log(f"-> Hoàn thành nạp {len(self.tasks_list)} tasks vào giao diện.") + if len(self.tasks_list) == 0: messagebox.showwarning("Scan", "Không tìm thấy file audio/video nào!") + self.btn_start.config(state=tk.NORMAL) + + # ================================================================== + # MODE B: NAS SCAN — Mượn logic từ mini_tabb3_renvideo + # ================================================================== + AUTO_PROJECT_OUTPUT_FOLDER_NAME = "_OUTPUT_PROJECTS" + AUTO_FINAL_VIDEO_FOLDER_NAME = "_FINAL_VIDEOS_OUTPUT" + + def _toggle_input_mode(self): + """Ẩn/hiện frame Mode A vs Mode B.""" + self.mode_a_frame.pack_forget() + self.mode_b_frame.pack_forget() + + if hasattr(self, 'smode_frame'): + self.smode_frame.pack_forget() + self.motion_effects_frame.pack_forget() + + if self.input_mode_var.get() == "nas_scan": + self.mode_b_frame.pack(fill=tk.X, expand=True, pady=5, after=self.mode_selector_frame) + else: + self.mode_a_frame.pack(fill=tk.X, expand=True, pady=5, after=self.mode_selector_frame) + if hasattr(self, 'smode_frame'): + self.smode_frame.pack(side=tk.LEFT, padx=5, fill=tk.Y, anchor='n') + self.motion_effects_frame.pack(side=tk.LEFT, padx=5, fill=tk.Y, anchor='n') + + def _export_colab_tasks_json(self): + if not getattr(self, 'tasks_list', []): + messagebox.showwarning("HF Sync", "Bảng công việc đang trống! Hãy Scan dữ liệu trước.") + return + + hf_token = self.hf_token_var.get().strip() + hf_repo = self.hf_repo_var.get().strip() + + if not hf_token: + messagebox.showerror("HF Sync", + "❌ Chưa nhập HF Token!\n\n" + "Vui lòng dán Token HuggingFace của anh vào ô 'HF Token' rồi bấm 💾 lưu lại.") + return + + import os, logging + # KHÓA TOÀN BỘ LOG RÁC CỦA HUGGING FACE (CHỐNG CRASH GUI) + os.environ["HF_HUB_DISABLE_PROGRESS_BARS"] = "1" + os.environ["TQDM_DISABLE"] = "1" + logging.getLogger("huggingface_hub").setLevel(logging.CRITICAL) + + try: + from huggingface_hub import HfApi + import huggingface_hub.utils as hf_utils + hf_utils.logging.set_verbosity_error() + except ImportError: + messagebox.showerror("Thiếu thư viện", + "❌ Chưa cài huggingface_hub!\n\nMở terminal gõ:\npip install huggingface_hub") + return + + api = HfApi() + + # TỰ ĐỘNG TẠO HF REPO NẾU ĐỂ TRỐNG + if not hf_repo: + try: + user_info = api.whoami(token=hf_token) + username = user_info["name"] + hf_repo = f"{username}/Video-Render-Auto" + self.hf_repo_var.set(hf_repo) + self.save_global_config() + self.log(f"🤖 Tự động tạo tên Repo: {hf_repo}") + except Exception as e: + messagebox.showerror("Lỗi Token", f"❌ Token HuggingFace không hợp lệ hoặc lỗi mạng!\n\nChi tiết: {e}") + return + + # Lưu cài đặt UI vào session_data + self.save_project_file(silent=True) + self.save_global_config() + session_id = str(uuid.uuid4())[:6].upper() + + # Dùng thư mục tạm cục bộ làm staging area (không cần ổ G:) + staging_root = os.path.join(tempfile.gettempdir(), "hf_colab_staging") + session_dir = os.path.join(staging_root, session_id) + c_base = f"/content/hf_workdir/sessions/{session_id}" + + # Tạo Progress Window + prog_win = tk.Toplevel(self) + prog_win.title(f"☁️ HF UPLOAD PHIÊN {session_id}") + prog_win.geometry("520x200") + prog_win.attributes('-topmost', True) + + tk.Label(prog_win, text=f"MÃ PHIÊN: {session_id}", font=("Arial", 13, "bold"), fg="#0d6efd").pack(pady=5) + lbl_status = tk.Label(prog_win, text="Đang khởi tạo...", font=("Arial", 10)) + lbl_status.pack(pady=3) + prog_var = tk.DoubleVar() + pb = ttk.Progressbar(prog_win, variable=prog_var, maximum=len(self.tasks_list) + 2) + pb.pack(fill=tk.X, padx=20, pady=8) + + def worker(): + import shutil, tempfile + # ── STAGING: dùng thư mục tạm cục bộ (không cần ổ G: hay Drive) ── + staging_root = os.path.join(tempfile.gettempdir(), "hf_colab_staging") + session_dir = os.path.join(staging_root, session_id) + # Path Colab sẽ thấy sau khi snapshot_download về /content/hf_workdir + c_base = f"/content/hf_workdir/sessions/{session_id}" + + os.makedirs(os.path.join(session_dir, "audio"), exist_ok=True) + os.makedirs(os.path.join(session_dir, "image"), exist_ok=True) + os.makedirs(os.path.join(session_dir, "sub"), exist_ok=True) + os.makedirs(os.path.join(session_dir, "assets"), exist_ok=True) + os.makedirs(os.path.join(session_dir, "output"), exist_ok=True) + + colab_tasks = [] + + # 1. Copy Global Assets (intro, outro, logo, overlay, bg_music) + settings = self.session_data.get("settings", {}) + for key in ["intro_path", "outro_path", "logo", "overlay", "bg_music"]: + p = settings.get(key, "") + if p and os.path.exists(p): + self.log(f"[HF-SYNC] Copy asset: {os.path.basename(p)}") + if os.path.isfile(p): + dst = os.path.join(session_dir, "assets", os.path.basename(p)) + shutil.copy2(p, dst) + settings[key] = f"{c_base}/assets/{os.path.basename(p)}" + elif os.path.isdir(p): + dst = os.path.join(session_dir, "assets", os.path.basename(p)) + if not os.path.exists(dst): shutil.copytree(p, dst) + settings[key] = f"{c_base}/assets/{os.path.basename(p)}" + + # 2. Copy Fonts nếu có + try: + first_audio = self.tasks_list[0].get("audio", "") or self.tasks_list[0].get("path_audio_srt", "") + if first_audio: + nas_fonts = os.path.join(os.path.dirname(first_audio), "fonts") + if os.path.isdir(nas_fonts): + dst_fonts = os.path.join(staging_root, "fonts") + if not os.path.exists(dst_fonts): + lbl_status.config(text="Đang copy Fonts...") + shutil.copytree(nas_fonts, dst_fonts) + except: pass + + # 3. Copy Tasks (Mode A & B) + copy_errors = [] + total_audio = 0 + for i, task in enumerate(self.tasks_list): + aud_name = task.get("name", task.get("target_filename", "")) + self.after(0, lambda i=i, n=aud_name: lbl_status.config(text=f"Copy {i+1}/{len(self.tasks_list)}: {n}")) + new_task = task.copy() + is_nas = task.get("_is_nas_project", False) + + if is_nas: + # MODE B: cả thư mục project (PHASE mp3 + ảnh + SRT) + proj_path = task.get("path_audio_srt", "") + proj_name = os.path.basename(proj_path) + if proj_path and os.path.isdir(proj_path): + dst_proj = os.path.join(session_dir, "audio", proj_name) + if not os.path.exists(dst_proj): shutil.copytree(proj_path, dst_proj) + new_task["path_audio_srt"] = f"{c_base}/audio/{proj_name}" + new_task["specific_image_root"] = f"{c_base}/audio/{proj_name}" + srt_in_proj = task.get("_nas_srt_path", "") + if srt_in_proj: + new_task["_nas_srt_path"] = srt_in_proj.replace(proj_path, f"{c_base}/audio/{proj_name}") + total_audio += 1 + else: + copy_errors.append(f"⚠️ Mode B: Không tìm thấy project: {proj_path}") + else: + # MODE A: file audio đơn lẻ + audio_dir = task.get("path_audio_srt", "") + if audio_dir and aud_name: + audio_src = os.path.join(audio_dir, aud_name) + if os.path.exists(audio_src): + shutil.copy2(audio_src, os.path.join(session_dir, "audio", aud_name)) + new_task["path_audio_srt"] = f"{c_base}/audio" + total_audio += 1 + else: + copy_errors.append(f"⚠️ Không tìm thấy audio: {audio_src}") + + # SRT / JSON + sub_dir = task.get("specific_srt_json_root", "") + if sub_dir and os.path.exists(sub_dir): + dst_sub = os.path.join(session_dir, "sub", os.path.basename(sub_dir)) + if not os.path.exists(dst_sub): shutil.copytree(sub_dir, dst_sub) + new_task["specific_srt_json_root"] = f"{c_base}/sub/{os.path.basename(sub_dir)}" + elif task.get("path_json_style") and os.path.exists(task["path_json_style"]): + jf = task["path_json_style"] + shutil.copy2(jf, os.path.join(session_dir, "sub", os.path.basename(jf))) + new_task["path_json_style"] = f"{c_base}/sub/{os.path.basename(jf)}" + + # Ảnh / Video nền + img_root = task.get("specific_image_root", "") + if img_root and os.path.exists(img_root): + dst_img = os.path.join(session_dir, "image", os.path.basename(img_root)) + if not os.path.exists(dst_img): + if os.path.isdir(img_root): shutil.copytree(img_root, dst_img) + else: shutil.copy2(img_root, dst_img) + new_task["specific_image_root"] = f"{c_base}/image/{os.path.basename(img_root)}" + + new_task["specific_output_root"] = f"{c_base}/output" + colab_tasks.append(new_task) + self.after(0, lambda v=i+1: prog_var.set(v)) + + # Kiểm tra audio + audio_dir_path = os.path.join(session_dir, "audio") + actual_audio = len(os.listdir(audio_dir_path)) if os.path.isdir(audio_dir_path) else 0 + if actual_audio == 0: + def show_err_empty(): + prog_win.destroy() + messagebox.showerror("LỖI NGUYÊN LIỆU", + f"❌ Không có bài nhạc nào trong staging!\n\n" + f"Lỗi:\n" + "\n".join(copy_errors[:5])) + self.after(0, show_err_empty) + return + + # 4. Ghi tasks.json + copy code Python vào staging + self.after(0, lambda: lbl_status.config(text="Ghi manifest và code...")) + manifest = { + "session_id": session_id, + "hf_repo": hf_repo, + "hf_base_path": f"sessions/{session_id}", + "total_tasks": len(colab_tasks), + "created_at": datetime.now().strftime("%Y-%m-%d %H:%M:%S"), + "session_data": self.session_data, + "tasks_list": colab_tasks, + } + with open(os.path.join(session_dir, "tasks.json"), 'w', encoding='utf-8') as f: + json.dump(manifest, f, ensure_ascii=False, indent=2) + shutil.copy2(os.path.abspath(__file__), os.path.join(session_dir, os.path.basename(__file__))) + + # 5. UPLOAD LÊN HUGGINGFACE + self.after(0, lambda: lbl_status.config(text=f"🚀 Đang upload {actual_audio} bài lên HuggingFace... (Vui lòng đợi)")) + + # Chuyển progress bar sang mode trượt báo hiệu mạng đang tải + def start_indeterminate(): + pb.config(mode="indeterminate") + pb.start(15) + self.after(0, start_indeterminate) + + try: + from huggingface_hub import HfApi + api = HfApi() + # Tạo repo nếu chưa có + try: + api.create_repo(repo_id=hf_repo, repo_type="dataset", private=False, exist_ok=True, token=hf_token) + except: pass + # Upload cả thư mục session lên HF + api.upload_folder( + folder_path=session_dir, + path_in_repo=f"sessions/{session_id}", + repo_id=hf_repo, + repo_type="dataset", + token=hf_token, + ) + except Exception as e: + def show_hf_error(err=str(e)): + pb.stop() + prog_win.destroy() + messagebox.showerror("Lỗi Upload HuggingFace", + f"❌ Upload thất bại!\n{err}\n\n" + f"Có thể mạng đứt giữa chừng, vui lòng bấm Sync lại.") + self.after(0, show_hf_error) + return + + def show_success(): + pb.stop() + prog_win.destroy() + self.clipboard_clear(); self.clipboard_append(session_id); self.update() + hf_url = f"https://huggingface.co/datasets/{hf_repo}/tree/main/sessions/{session_id}" + + # Dọn sạch ổ C sau khi push thành công 100% (Tính năng của tool tải siêu tốc) + shutil.rmtree(session_dir, ignore_errors=True) + + messagebox.showinfo("✅ Upload HuggingFace thành công!", + f"🎉 UPLOAD HOÀN TẤT!\n" + f"MÃ PHIÊN: {session_id} (đã COPY 📋)\n\n" + f"📦 {len(colab_tasks)} bài đã lên HF.\n" + f"🔗 Link: {hf_url}\n\n" + f"➡️ Lên Colab → dán mã [{session_id}] vào SESSION_ID → Run All!") + self.after(0, show_success) + + # CHẠY WORKER TRÊN LUỒNG RIÊNG (Tránh đứng máy) + threading.Thread(target=worker, daemon=True).start() + + + def toggle_colab_auto_sync(self): + """Bật/Tắt chế độ đồng bộ cuốn chiếu đa phiên.""" + if getattr(self, "colab_sync_running", False): + self.colab_sync_running = False + self.btn_colab_auto_sync.config(text="📥 BẬT AUTO-SYNC TỪ Ổ G:", bg="#17a2b8", fg="white") + self.log("🛑 Đã TẮT tính năng Auto-Sync (Cuốn Chiếu).") + else: + self.colab_sync_running = True + self.btn_colab_auto_sync.config(text="📥 ĐANG AUTO-SYNC (Ổ G:)", bg="#ff9900", fg="black") + self.log("🚀 BẬT Auto-Sync. Đang chạy ngầm quét ổ G: để kéo MP4 về NAS!") + threading.Thread(target=self._colab_auto_sync_worker, daemon=True).start() + + def _colab_auto_sync_worker(self): + """Worker liên tục quét ổ G, kéo video về NAS và xóa file nguồn trên G để dọn trống Drive.""" + import time, glob, os, shutil, json, re + + while getattr(self, "colab_sync_running", False): + drive_root = getattr(self, "colab_drive_root", None) + if not drive_root or not os.path.exists(drive_root): + def ask_dir(): + d = filedialog.askdirectory(title="Chọn thư mục VideoRender trên ổ G:") + if d: self.colab_drive_root = d + else: self.toggle_colab_auto_sync() + self.after(0, ask_dir) + time.sleep(2) + continue + + # 1. Đọc tất cả SESSIONS/*/tasks.json + json_files = glob.glob(os.path.join(drive_root, "SESSIONS", "*", "tasks.json")) + task_map = {} + for jf in json_files: + try: + with open(jf, 'r', encoding='utf-8') as f: + data = json.load(f) + for t in data.get("tasks_list", []): + name_raw = t.get("name") or t.get("target_filename") or "" + safe_n = re.sub(r'[\\/*?"<>|]', '', os.path.splitext(name_raw)[0]) + task_map[safe_n] = t.get("specific_output_root", "") + except: pass + + # 2. Quét file MP4 trong SESSIONS\*\output\*.mp4 + mp4_files = glob.glob(os.path.join(drive_root, "SESSIONS", "*", "output", "**", "*.mp4"), recursive=True) + for mp4 in mp4_files: + if not getattr(self, "colab_sync_running", False): break + try: + if os.path.getsize(mp4) < 5 * 1024 * 1024: continue + if time.time() - os.path.getmtime(mp4) < 5: continue + + base_name = os.path.splitext(os.path.basename(mp4))[0] + nas_dest_folder = task_map.get(base_name) + + if nas_dest_folder and os.path.exists(nas_dest_folder): + final_nas_path = os.path.join(nas_dest_folder, f"{base_name}.mp4") + self.log(f"📥 [AUTO-SYNC] Kéo {base_name}.mp4 về NAS...") + shutil.move(mp4, final_nas_path) + self.log(f"✅ [AUTO-SYNC] Đã kéo về NAS: {base_name}.mp4") + + # TỰ ĐỘNG XÓA AUDIO ĐỂ TRỐNG Ổ G + session_dir = os.path.dirname(os.path.dirname(mp4)) + audio_mp3 = os.path.join(session_dir, "audio", f"{base_name}.mp3") + audio_wav = os.path.join(session_dir, "audio", f"{base_name}.wav") + if os.path.exists(audio_mp3): os.remove(audio_mp3) + if os.path.exists(audio_wav): os.remove(audio_wav) + except Exception as e: + pass + time.sleep(10) + + def reset_tasks(self): + if not hasattr(self, 'tasks_list') or not self.tasks_list: + messagebox.showinfo("Trống", "Không có công việc nào để xóa trên bảng.") + return + if messagebox.askyesno("Xác nhận", "Bạn có chắc chắn muốn XÓA TOÀN BỘ danh sách chờ trên Tool?\n\n(Lưu ý: Không xóa file trên ổ cứng, chỉ làm trống bảng để Scan lại)"): + with self.task_lock: + self.tasks_list = [] + self.tree.delete(*self.tree.get_children()) + self.log("🗑️ Đã làm trống bảng công việc. Bạn có thể Scan dữ liệu mới.") + + def _dispatch_scan(self): + """Gọi scan Mode A hoặc Mode B tùy theo checkbox.""" + if self.input_mode_var.get() == "nas_scan": + self.scan_nas_projects() + else: + self.scan_and_load_tasks() + + def scan_nas_projects(self): + """Mode B: Quét NAS projects dựa trên list folders.""" + if getattr(self, "processing", False): + messagebox.showwarning("Notice", "Hệ thống đang xử lý, vui lòng đợi!") + return + + input_list = self.get_paths_from_widget(self.txt_nas_inputs) + sub_json_list = self.get_paths_from_widget(self.txt_nas_sub_json) + + # -----> ĐỌC LOGO LIST Mode B <----- + logo_list = self.get_paths_from_widget(self.txt_nas_logos) if hasattr(self, 'txt_nas_logos') else [] + + if not input_list: + messagebox.showerror("Lỗi", "Chưa nhập FOLDERS _OUTPUT_PROJECTS!") + return + + self.btn_start.config(state=tk.DISABLED) + self.log("🔍 [NAS SCAN] Đang quét thư mục NAS, vui lòng chờ...") + # TRUYỀN THÊM logo_list VÀO THREAD + threading.Thread(target=self._scan_nas_thread_worker, args=(input_list, sub_json_list, logo_list), daemon=True).start() + + def _scan_nas_thread_worker(self, input_list, sub_json_list, logo_list=None): + if logo_list is None: logo_list = [] + """Thread: Quét NAS tìm project folders chứa PHASE files từ danh sách ScrolledText.""" + new_tasks = [] + json_cache = {} + + try: + for i, input_dir in enumerate(input_list): + if not os.path.isdir(input_dir): + self.log(f"[NAS] ⚠️ Lỗi: Thư mục không tồn tại: {input_dir}") + continue + + spec_sub = sub_json_list[i] if i < len(sub_json_list) else "" + + # -----> Lấy logo tương ứng dòng <----- + spec_logo = logo_list[i] if i < len(logo_list) else "" + + # Cố gắng suy luận thư mục đầu ra + final_video_dir = input_dir.replace("_OUTPUT_PROJECTS", "_FINAL_VIDEOS_OUTPUT") + if final_video_dir == input_dir: + final_video_dir = input_dir + "_FINAL" + os.makedirs(final_video_dir, exist_ok=True) + + if spec_sub and spec_sub not in json_cache: + try: json_cache[spec_sub] = [os.path.join(spec_sub, fn) for fn in os.listdir(spec_sub) if fn.lower().endswith('.json')] + except: json_cache[spec_sub] = [] + + group_name = os.path.basename(os.path.dirname(input_dir)) # ex: INFJ JAPAN + + for sub_proj in os.scandir(input_dir): + if not sub_proj.is_dir(): continue + + # Tìm PHASE files + mp3_files = glob.glob(os.path.join(sub_proj.path, "*_PHASE_*.mp3")) + img_files = glob.glob(os.path.join(sub_proj.path, "*_PHASE_*.jp*g")) + glob.glob(os.path.join(sub_proj.path, "*_PHASE_*.png")) + + if not mp3_files: continue + + srt_files = glob.glob(os.path.join(sub_proj.path, "*.srt")) + + # Ưu tiên lấy file sub có size to nhất (thường là FULL_MASTER.srt), bỏ qua các file sub nhỏ của từng phase + srt_path = max(srt_files, key=os.path.getsize) if srt_files else None + + task_id = str(uuid.uuid4()) + history_key = f"NAS_{group_name}_{sub_proj.name}" + json_path_found = None + if spec_sub and json_cache.get(spec_sub): + json_path_found = random.choice(json_cache[spec_sub]) + + task = { + "id": task_id, "idx": "", "name": sub_proj.name, "stt": None, "group_index": i + 1, + "history_key": history_key, "path_audio_srt": sub_proj.path, + "specific_srt_json_root": spec_sub, "specific_logo_root": spec_logo, + "specific_image_root": sub_proj.path, "specific_output_root": final_video_dir, + "path_json_style": json_path_found, "target_filename": f"{sub_proj.name}.mp4", + "_is_nas_project": True, "_nas_srt_path": srt_path, + "info_text": f"NAS | {len(mp3_files)} phases, {len(img_files)} imgs" + (" + SRT" if srt_path else ""), + } + new_tasks.append((task, group_name, sub_proj.name)) + + self.log(f"[NAS SCAN] Quét xong: {len(new_tasks)} projects tìm thấy.") + except Exception as e: + self.log(f"[NAS SCAN] LỖI: {e}") + + self.after(0, self._finalize_nas_scan_ui, new_tasks) + + def _finalize_nas_scan_ui(self, new_tasks): + """Load NAS scan results vào Treeview.""" + with self.task_lock: + self.tree.delete(*self.tree.get_children()) + self.tasks_list = [] + for count, item in enumerate(new_tasks): + task, group_name, proj_name = item + item_id = self.tree.insert("", "end", values=(count + 1, group_name, proj_name, "NAS Project", "Waiting", task["info_text"])) + task["idx"] = item_id + self.tasks_list.append(task) + self.log(f"-> Đã nạp {len(self.tasks_list)} NAS projects vào danh sách.") + if not self.tasks_list: + messagebox.showwarning("Scan", "Không tìm thấy project NAS nào có file PHASE!") + self.btn_start.config(state=tk.NORMAL) + + def _phase_sort_key(self, filepath): + """Trích số PHASE từ tên file. Hỗ trợ '3_PHASE_hash.mp3' và 'Name_PHASE_3.mp3'.""" + basename = os.path.basename(filepath) + m = re.match(r'^(\d+)_PHASE_', basename, re.IGNORECASE) + if m: return int(m.group(1)) + m2 = re.search(r'_PHASE_(\d+)', basename, re.IGNORECASE) + return int(m2.group(1)) if m2 else 0 + + def process_nas_project_task(self, task, cfg): + """Render 1 NAS project (nhiều PHASE mp3+ảnh) thành 1 video MP4. + Dùng engine render hiện tại (OpenCV motion + XFade transitions).""" + task_name = task['name'] + t_id = task['idx'] + history_key = task['history_key'] + proj_path = task['path_audio_srt'] # Folder chứa PHASE files + final_folder = task['specific_output_root'] + task_temp = os.path.join(cfg['temp_dir'], task['id']) + + safe_name = re.sub(r'[\\/*?:"<>|]', '', task_name) + if cfg.get('is_preview', False): safe_name += '_PREVIEW' + final_out_path = os.path.join(final_folder, f"{safe_name}.mp4") + + try: + self.msg_queue.put(("status", (t_id, "Prep", "Starting NAS project..."))) + + # --- CHECK HISTORY --- + if cfg['check_history'] and history_key in cfg.get('history_dict', {}) and not cfg.get('is_preview', False): + self.log(f"[{task_name}] ⏭️ Bỏ qua: ĐÃ CÓ TRONG LỊCH SỬ.") + self.msg_queue.put(("status", (t_id, "Skipped", "Bỏ qua (Lịch sử)"))) + self.msg_queue.put(("history_skipped", None)) + return + + # --- KIỂM TRA CHẤT LƯỢNG OUTPUT CŨ (BPP Sát Hạch) --- + if cfg.get('check_output', True) and not cfg.get('is_preview', False): + if os.path.exists(final_out_path): + if self._is_valid_existing_output(final_out_path, cfg['target_w'], cfg['target_h'], cfg['ffprobe'], task_name): + self.log(f"[{task_name}] ⏭️ Bỏ qua: File ĐÃ TỒN TẠI và ĐẠT CHUẨN.") + self.msg_queue.put(('status', (t_id, 'Skipped', 'Đã tồn tại (Chuẩn)'))) + self.msg_queue.put(('history_skipped', None)) + return + else: + self.msg_queue.put(('status', (t_id, 'Fixing', 'Đang sửa file lỗi cũ...'))) + + # --- SMART LOCK (JSON Heartbeat) --- + lock_file_path = final_out_path + ".lock" + tmp_nas_path = final_out_path + ".tmp" + _lock_refresh_stop = threading.Event() # FIX: Dùng Event() thay vì list rỗng + if cfg.get('multi_pc_sync') and not cfg.get('is_preview', False): + import socket as _sk3, json as _jk3, threading as _thr3 + def _try_nas_lock(): + my = _sk3.gethostname() + nas_q = cfg.get('nas_queue_path', '') + for _a in range(2): + try: + fd = os.open(lock_file_path, os.O_CREAT | os.O_EXCL | os.O_WRONLY) + os.write(fd, _jk3.dumps({'worker': my, 'timestamp': time.time()}).encode()) + os.close(fd) + # ✅ Lock lấy thành công → bắt đầu refresh mtime mỗi 30s + def _refresh_lock(_lfp=lock_file_path, _my=my): + import time as _tl, json as _jl + while not _lock_refresh_stop.is_set(): + _tl.sleep(30) + if _lock_refresh_stop.is_set(): break + try: + with open(_lfp, 'w', encoding='utf-8') as _f: + _jl.dump({'worker': _my, 'timestamp': _tl.time()}, _f) + except: pass + _thr3.Thread(target=_refresh_lock, daemon=True).start() + return True + except FileExistsError: + owner, dead = 'Unknown', False + try: + with open(lock_file_path, 'r', encoding='utf-8') as f: info = _jk3.load(f) + owner = info.get('worker', 'Unknown') + # Dùng mtime của lock file làm nhịp tim — không cần STATE file + dead = time.time() - os.path.getmtime(lock_file_path) > 120 + except: dead = time.time() - os.path.getmtime(lock_file_path) > 120 + if dead: + self.log(f'[{task_name}] 🔓 Cưỡng chế khóa từ máy "{owner}" (offline > 120s)!') + try: os.remove(lock_file_path) + except: pass + try: os.remove(tmp_nas_path) + except: pass + time.sleep(0.3); continue + else: + self.log(f'[{task_name}] ⏭️ Bỏ qua: "{owner}" vẫn đang sống.') + self.msg_queue.put(('status', (t_id, 'Skipped', f'Render bởi {owner}'))) + return None + return False + r = _try_nas_lock() + if r is None: return + if not r: + self.log(f'[{task_name}] ⚠️ Không lấy được khóa. Bỏ qua.') + self.msg_queue.put(('status', (t_id, 'Skipped', 'Lock fail'))); return + + + shutil.rmtree(task_temp, ignore_errors=True) + os.makedirs(task_temp, exist_ok=True) + + # === 1. THU THẬP PHASE FILES === + mp3_files_src = sorted(glob.glob(os.path.join(proj_path, "*_PHASE_*.mp3")), key=self._phase_sort_key) + img_map = {} + for f in (glob.glob(os.path.join(proj_path, "*_PHASE_*.jp*g")) + + glob.glob(os.path.join(proj_path, "*_PHASE_*.png"))): + key = self._phase_sort_key(f) + img_map[key] = f + + self.log(f"[{task_name}] Tìm thấy {len(mp3_files_src)} audio, {len(img_map)} ảnh.") + + if not mp3_files_src: + raise FileNotFoundError(f"Không tìm thấy file *_PHASE_*.mp3 trong {proj_path}") + if len(mp3_files_src) != len(img_map): + self.log(f"[{task_name}] ❌ BỎ QUA TASK: Số lượng audio ({len(mp3_files_src)}) không khớp số lượng ảnh ({len(img_map)}).") + self.msg_queue.put(('status', (t_id, 'Error', 'Không khớp số lượng Audio/Ảnh'))) + self.msg_queue.put(('failure', None)) + if cfg.get('multi_pc_sync') and not cfg.get('is_preview', False): + _lock_refresh_stop.set() + try: os.remove(lock_file_path) + except: pass + return + + # ===================================================================== + # === 1.5. CHUẨN HÓA KÍCH THƯỚC & ÉP LOGO 0:0 CHO TỪNG ẢNH PHASE === + # ===================================================================== + self.msg_queue.put(("status", (t_id, "Prep Images", "Đang chuẩn hóa & ép Logo 0:0..."))) + target_w, target_h = cfg['target_w'], cfg['target_h'] + logo_folder = task.get('specific_logo_root', '') + + logo_png_files =[] + if logo_folder and os.path.isdir(logo_folder): + # Chỉ lấy các file PNG (vì cần lớp trong suốt Alpha) + logo_png_files =[os.path.join(logo_folder, f) for f in os.listdir(logo_folder) if f.lower().endswith('.png')] + + prev_logo = None + for phase_num, img_path in img_map.items(): + try: + # 1. Đọc ảnh nền phase gốc (có thể kích thước đang bị lệch) + base_img = self.cv2_imread(img_path, cv2.IMREAD_COLOR) + if base_img is None: continue + + # 2. Resize & Crop chuẩn hóa về KHUNG OUTPUT (vd: 1280x720) + base_img = self.prep_image_for_res(base_img, target_w, target_h) + + # 3. Ép Logo nếu có thư mục + if logo_png_files: + # Logic: Không lấy trùng logo của phase trước đó + valid_logos =[l for l in logo_png_files if l != prev_logo] + if not valid_logos: valid_logos = logo_png_files # Fallback nếu folder chỉ có 1 ảnh + chosen_logo = random.choice(valid_logos) + prev_logo = chosen_logo + + # Đọc Logo (IMREAD_UNCHANGED để lấy kênh Alpha đục lỗ trong suốt) + logo_img = self.cv2_imread(chosen_logo, cv2.IMREAD_UNCHANGED) + + if logo_img is not None and len(logo_img.shape) == 3 and logo_img.shape[2] == 4: + # Phóng to/Thu nhỏ logo ép đúng khung hình target_w x target_h + logo_resized = cv2.resize(logo_img, (target_w, target_h), interpolation=cv2.INTER_LANCZOS4) + + # Thuật toán Alpha Blending Vectorized (Nhanh gấp 100 lần vòng for) + alpha_mask = (logo_resized[:, :, 3] / 255.0)[:, :, np.newaxis] # Thêm trục chiều sâu để nhân ma trận + base_img = (alpha_mask * logo_resized[:, :, :3] + (1 - alpha_mask) * base_img).astype(np.uint8) + + # 4. Lưu đè ra file temp_dir để Engine Render nuốt + merged_path = os.path.join(task_temp, f"phase_std_{phase_num}.jpg") + self.cv2_imwrite(merged_path, base_img, ext=".jpg") + + # Đánh tráo bản đồ: Cập nhật đường dẫn ảnh gốc thành ảnh ĐÃ MIX LOGO + img_map[phase_num] = merged_path + + except Exception as e: + self.log(f"[{task_name}] ⚠️ Lỗi tiền xử lý ảnh phase {phase_num}: {e}") + # ===================================================================== + + # === 2. RENDER TỪNG PHASE (Dùng engine hiện tại) === + self.msg_queue.put(("status", (t_id, "Rendering", f"0/{len(mp3_files_src)} phases"))) + + w, h = cfg['target_w'], cfg['target_h'] + motion_cycle = cfg['vis_cycle'] + ovl_mode = cfg['vis_blend'] + opacity = cfg['vis_opacity'] + motion_type_raw = cfg.get('nas_motion_type', 'Random') + + # Motion groups (copy từ render_ffmpeg_visuals_short) + motion_groups = { + "Zoom": ["Zoom In", "Zoom Out"], + "Pan": ["Pan Left->Right", "Pan Right->Left", "Slow Pan Diagonal"], + "Floating": ["Bồng Bềnh (Parallax)", "Bồng Bềnh Nhẹ (Romantic)", "Space Float (Phi trọng lực)"], + "Cinematic": ["Ken Burns (Zoom Pan)", "Drone Hover (Hình số 8)", "Handheld (Camera cầm tay)", "Pendulum Sway (Quả lắc)", "Deep Breathe (Focus)"] + } + opencv_motions = [ + "Zoom In", "Zoom Out", "Pan Left->Right", "Pan Right->Left", + "Bồng Bềnh (Parallax)", "Bồng Bềnh Nhẹ (Romantic)", "Deep Breathe (Focus)", + "Slow Pan Diagonal", "Ken Burns (Zoom Pan)", "Drone Hover (Hình số 8)", + "Handheld (Camera cầm tay)", "Pendulum Sway (Quả lắc)", "Space Float (Phi trọng lực)", "Random" + ] + + # Overlay selection + ovl_path = None + if cfg.get('overlay_path') and os.path.exists(cfg['overlay_path']): + ovl_input = cfg['overlay_path'] + if os.path.isfile(ovl_input): ovl_path = ovl_input + elif os.path.isdir(ovl_input): + candidates = [os.path.join(ovl_input, f) for f in os.listdir(ovl_input) if f.lower().endswith(('.mp4', '.mov'))] + if candidates: ovl_path = random.choice(candidates) + + # Outro effect (chỉ cho slide cuối) + outro_effect_raw = cfg.get('outro_effect_type', 'None') + outro_effect = outro_effect_raw if outro_effect_raw != 'Random' else random.choice( + ["Fade Out (Tự nhiên)", "Vortex Suck Out", "TV Turn Off", "Elastic Drop", + "Whip Pan Out Left", "Whip Pan Out Right", "Spin Shrink Out", "Slide Fall Down"]) + outro_dur = cfg.get('outro_effect_duration', 2.0) + + segment_video_paths = [] + audio_concat_paths = [] + total_audio_duration = 0.0 + prev_motion_group = None + + for phase_idx, mp3_src in enumerate(mp3_files_src): + if self.stop_event.is_set(): raise Exception("Đã dừng bởi người dùng.") + + phase_num = self._phase_sort_key(mp3_src) + if phase_num not in img_map: + self.log(f"[{task_name}] ⚠️ Phase {phase_num}: Không có ảnh. Bỏ qua.") + continue + + img_path = img_map[phase_num] + audio_dur = self.get_media_duration(cfg['ffprobe'], mp3_src) or 5.0 + if cfg.get('is_preview', False) and total_audio_duration + audio_dur > 60.0: + audio_dur = max(1.0, 60.0 - total_audio_duration) + + total_audio_duration += audio_dur + audio_concat_paths.append(mp3_src) + + seg_name = os.path.join(task_temp, f"phase_{phase_idx:04d}.mp4") + + # Chọn motion (chống trùng nhóm liên tiếp) + if motion_type_raw != 'Random': + chosen_motion = motion_type_raw + else: + valid_groups = [g for g in motion_groups.keys() if g != prev_motion_group] + if not valid_groups: valid_groups = list(motion_groups.keys()) + chosen_group = random.choice(valid_groups) + chosen_motion = random.choice(motion_groups[chosen_group]) + prev_motion_group = chosen_group + + is_last_slide = (phase_idx == len(mp3_files_src) - 1) + slide_outro = outro_effect if is_last_slide else "None" + + # Bổ sung thuật toán chống Desync (Lệch Audio) trong Mode B + # Do XFade cắt mất ranh giới 1 khoảng `xf_dur` (mặc định 1.0s theo hàm xfade_concat) nên Video sẽ ngắn hơn Audio. + # Do đó: Chúng ta phải kéo dài ảnh nền dư thêm 1.0s (Trừ clip cuối) để làm "đệm Fade" + video_render_dur = audio_dur + (0.0 if is_last_slide else 1.0) + + # Render bằng OpenCV hoặc FFmpeg (Fast Mode nếu bật ⚡) + if chosen_motion in opencv_motions or slide_outro != "None": + if cfg.get('fast_mode', False): + self.render_ffmpeg_zoompan(img_path, seg_name, w, h, video_render_dur, 30, + ovl_path, ovl_mode, opacity, + slide_outro, outro_dur, chosen_motion, cfg, task_name) + else: + self.render_opencv_parallax(img_path, seg_name, w, h, video_render_dur, 30, + ovl_path, ovl_mode, opacity, + slide_outro, outro_dur, chosen_motion, cfg, task_name) + else: + filter_c = generate_ffmpeg_filter_complex(chosen_motion, w, h, video_render_dur, 30, + ovl_path, ovl_mode, opacity, motion_cycle, + is_video_source=False, + fast_mode=cfg.get('fast_mode', False)) + cmd = [cfg['ffmpeg'], '-y', '-hide_banner', '-loglevel', 'error', + '-threads', '2', '-thread_queue_size', '4096', + '-loop', '1', '-framerate', '30', '-i', img_path] + if ovl_path: + has_gpu = any(x in cfg.get("video_encoder", "libx264") for x in ["nvenc", "amf", "qsv"]) + if has_gpu: cmd.extend(['-hwaccel', 'auto']) + cmd.extend(['-stream_loop', '-1', '-thread_queue_size', '1024', '-i', ovl_path]) + cmd.extend(['-filter_complex', filter_c, '-map', '[v]', '-t', str(video_render_dur)]) + cmd.extend(['-filter_threads', '2', # Giới hạn 2 luồng để tránh nghẽn context-switch trên máy nhiều core + '-c:v', 'libx264', + '-preset', 'ultrafast' if cfg.get('fast_mode') else 'fast', + '-crf', '18', '-g', '999', '-tune', 'zerolatency', '-pix_fmt', 'yuv420p', '-an', seg_name]) + self._log_and_run_subprocess(cmd, task_name) + + if os.path.exists(seg_name): + segment_video_paths.append(seg_name) + + self.msg_queue.put(("status", (t_id, "Rendering", f"{phase_idx + 1}/{len(mp3_files_src)} phases"))) + + if cfg.get('is_preview', False) and total_audio_duration >= 60.0: + break + + if not segment_video_paths: + raise Exception(f"Không render được segment nào cho project '{task_name}'.") + + # === 3. GHÉP SEGMENTS VỚI XFADE TRANSITIONS === + self.msg_queue.put(("status", (t_id, "Concat", "XFade transitions..."))) + local_vis_base = os.path.join(task_temp, "vis_concat.mp4") + + cfg['xfade_transition_type'] = cfg.get('nas_transition_type', 'Random') + + if len(segment_video_paths) > 1: + self.xfade_concat_videos(segment_video_paths, local_vis_base, task_name, cfg) + else: + shutil.copy2(segment_video_paths[0], local_vis_base) + + # === 4. GHÉP AUDIO === + self.msg_queue.put(("status", (t_id, "Audio", "Merging audio..."))) + concat_audio_path = os.path.join(task_temp, "full_audio.mp3") + if len(audio_concat_paths) > 1: + audio_list_file = os.path.join(task_temp, "audio_list.txt") + with open(audio_list_file, 'w', encoding='utf-8') as f: + for ap in audio_concat_paths: + safe_path = ap.replace(os.sep, '/').replace("'", "'\\''") + f.write(f"file '{safe_path}'\n") + cmd = [cfg['ffmpeg'], '-y', '-hide_banner', '-loglevel', 'error', + '-f', 'concat', '-safe', '0', '-i', audio_list_file, '-c', 'copy', concat_audio_path] + self._log_and_run_subprocess(cmd, f"{task_name}-AudioConcat") + else: + shutil.copy2(audio_concat_paths[0], concat_audio_path) + + # === 5. SUBTITLE (Nếu có SRT) === + local_ass = None + srt_src = task.get('_nas_srt_path') + if cfg.get('enable_sub', True) and srt_src and os.path.exists(srt_src): + current_style = dict(cfg.get("style", self.srt_settings)) # Ưu tiên style của Master gửi sang + json_style_path = task.get('path_json_style') + if json_style_path and os.path.exists(json_style_path): + try: + with open(json_style_path, 'r', encoding='utf-8') as f: + local_style = json.load(f) + if isinstance(local_style, dict): + current_style.update(local_style) + except: pass + if cfg.get('force_safe_font', False): current_style['fontname'] = 'Arial' + current_style['scale_mode'] = cfg.get('scale_mode', 'Dynamic') + ass_path = os.path.join(task_temp, "sub.ass") + if self.generate_ass(srt_src, ass_path, current_style, 1.0, w, h): + local_ass = ass_path + + # === 6. FINAL MUX (Video + Audio + Subtitle) === + self.msg_queue.put(("status", (t_id, "Muxing", "Final output..."))) + + bitrate_kbps = 2500 + if cfg.get('livestream_mode'): bitrate_kbps = 6000 if w >= 1920 else 4000 + elif cfg.get('enable_target_size') and total_audio_duration > 0: + vid_kb = (cfg['target_size_mb'] * 8192) - (192 * total_audio_duration) + if vid_kb > 0: bitrate_kbps = int(vid_kb / total_audio_duration * 0.95) + elif cfg.get('target_bitrate_manual', '').strip().isdigit(): + bitrate_kbps = int(cfg['target_bitrate_manual'].strip()) + + temp_final_mp4 = os.path.join(task_temp, f"{safe_name}_FINAL.mp4") + evasion_params = {} + if cfg.get('enable_audio_evasion', False): + evasion_params = {'speed': round(random.uniform(1.02, 1.05), 3), 'pitch': round(random.uniform(1.01, 1.03), 3), + 'low_cut': random.randint(100, 180), 'high_cut': random.randint(8000, 10000)} + + # --- RENDER INTRO CLIP TÙY CHỌN DỰA VÀO ẢNH ĐẦU TIÊN --- + local_intro_clip = None + intro_effect_raw = cfg.get("intro_effect_type", "None") + intro_dur = cfg.get("intro_effect_duration", 3.0) + if intro_effect_raw != "None" and img_map and 1 in img_map: + first_img = img_map[1] + chosen_intro = intro_effect_raw if intro_effect_raw != "Random" else random.choice(INTRO_EFFECTS_LIST) + local_intro_clip = os.path.join(task_temp, "intro_clip.mp4") + self.log(f"[{task_name}] [INTRO] Rendering intro clip: {chosen_intro} ({intro_dur}s)") + self._render_image_with_intro(first_img, local_intro_clip, w, h, intro_dur, 30, + None, "Screen", 0.8, intro_dur, + "Static", chosen_intro, intro_dur, cfg, task_name) + + spec_logo_root = task.get('specific_logo_root', '') + self.run_super_fast_one_pass_mux(local_vis_base, concat_audio_path, local_ass, + temp_final_mp4, bitrate_kbps, cfg, task_name, t_id, + evasion_params, total_audio_duration, logo_folder=spec_logo_root, intro_clip=local_intro_clip) + + # === 7. COPY LÊN NAS (Atomic) === + if os.path.exists(temp_final_mp4) and os.path.getsize(temp_final_mp4) > 1024: + nas_temp_path = final_out_path + ".tmp" + moved_successfully = False + original_size = os.path.getsize(temp_final_mp4) + for attempt in range(3): + try: + shutil.copy2(temp_final_mp4, nas_temp_path) + if os.path.exists(nas_temp_path) and os.path.getsize(nas_temp_path) == original_size: + try: + os.replace(nas_temp_path, final_out_path) + except OSError: + # Fallback nếu OS chặn Replace trên Network Drive + shutil.move(nas_temp_path, final_out_path) + moved_successfully = True + break + else: + raise IOError("Kích thước không khớp.") + except Exception as e: + if attempt < 2: self.log(f"[{task_name}] Lỗi copy NAS (Lần {attempt+1}): {e}"); time.sleep(2) + else: self.log(f"[{task_name}] Lỗi copy NAS (cuối): {e}") + + if moved_successfully: + with self.task_lock: self.success_count += 1 + self.msg_queue.put(("status", (t_id, "Done", "✅ Success!"))) + if not cfg.get('is_preview', False): + self.msg_queue.put(("task_done", history_key)) + else: + if os.path.exists(nas_temp_path): + try: os.remove(nas_temp_path) + except: pass + raise IOError("Không thể copy file an toàn lên NAS.") + else: + raise Exception("Render output is invalid or zero-size.") + + except Exception as e: + with self.task_lock: self.fail_count += 1 + error_message = str(e) + self.msg_queue.put(("status", (t_id, "Error", error_message.splitlines()[-1]))) + if error_message not in self.logged_errors: + self.logged_errors.add(error_message) + self.log(f"--- ERROR [NAS] ---\nProject '{task_name}':\n{error_message}") + finally: + # Dừng lock refresh thread + _lock_refresh_stop.set() # FIX: Kích hoạt cờ Event để dừng thread nhịp tim + try: shutil.rmtree(task_temp, ignore_errors=True) + except: pass + if lock_file_path and os.path.exists(lock_file_path): + try: + import socket as _s2, json as _jl2 + with open(lock_file_path, "r", encoding="utf-8") as f: + info = _jl2.load(f) + if info.get("worker") == _s2.gethostname(): + os.remove(lock_file_path) # Chỉ xóa khóa nếu do chính mình tạo ra + except: + try: os.remove(lock_file_path) + except: pass + + def apply_round_robin(self, tasks, batch_size): + grouped_tasks = {} + for t in tasks: + g = t['group_index'] + if g not in grouped_tasks: grouped_tasks[g] =[] + grouped_tasks[g].append(t) + + ordered_tasks =[] + keys = sorted(list(grouped_tasks.keys())) + while True: + added_this_round = False + for k in keys: + chunk = grouped_tasks[k][:batch_size] + if chunk: + ordered_tasks.extend(chunk) + grouped_tasks[k] = grouped_tasks[k][batch_size:] + added_this_round = True + if not added_this_round: break + return ordered_tasks + + def start_batch(self): + if getattr(self, "processing", False): + return + if not self.tasks_list: messagebox.showwarning("Empty", "No tasks! Hãy bấm Scan trước."); return + if not os.path.exists(self.ffmpeg_path.get()): messagebox.showerror("Error", "FFmpeg path invalid!"); return + + temp_d = self.temp_dir_path.get() + if self.enable_cluster_render.get(): + temp_d = r"\\nas_tcg\vệ tinh tcg\UY\Render_Cluster\Temp_Workspace" + self.log(f"🕸️ CLUSTER MODE ENABLED: Đẩy Temp Workspace của Master lên vùng chung NAS {temp_d} để các đệ tử đọc được!") + + if not os.path.exists(temp_d): + try: os.makedirs(temp_d, exist_ok=True) + except: messagebox.showerror("Error", "Cannot create Temp Dir!"); return + + self.save_project_file() + self.processing = True; self.stop_event.clear(); self.btn_start.config(state=tk.DISABLED); + self.start_time = datetime.now(); self.success_count = 0; self.fail_count = 0; self.skip_count = 0; self.logged_errors.clear() + + try: res_str = self.resolution_var.get().lower().split('x'); target_w = int(res_str[0]); target_h = int(res_str[1]) + except: messagebox.showerror("Lỗi", "Định dạng độ phân giải sai!"); self.btn_start.config(state=tk.NORMAL); return + + selected_display_value = self.encoder_combobox.get(); encoder_key = self._encoder_map.get(selected_display_value, "Auto-Detect") + + # XÓA TỰ ĐỘNG ĐIỀU CHỈNH - SỬ DỤNG HOÀN TOÀN THÔNG SỐ NGƯỜI DÙNG + config_snapshot = { + "ffmpeg": self.ffmpeg_path.get(), "ffprobe": self.ffprobe_path.get(), "temp_dir": temp_d, "target_w": target_w, "target_h": target_h, "source_mode": self.source_mode.get(), "overlay_path": self.overlay_path.get(), "logo_path": self.logo_path.get(), "bg_music_path": self.bg_music_path.get(), "intro_path": self.intro_path.get(), "realesrgan_path": self.realesrgan_path.get(), "enable_ai_upscale": self.enable_ai_upscale.get(), + "check_output": self.check_output_var.get(), "check_history": self.check_history_var.get(), "history_dict": self.session_data.get("history", {}), "multi_pc_sync": self.enable_multi_pc_sync.get(), + "enable_sub": self.enable_sub.get(), "scale_mode": self.scale_mode_var.get(), "voice_vol": self.voice_vol.get(), "bgm_vol": self.bgm_vol.get(), "enable_audio_evasion": self.enable_audio_evasion_var.get(), "enable_podcast_filter": self.enable_podcast_filter.get(), "smart_audio_level": self.smart_audio_level.get(), "enable_target_size": self.enable_target_size.get(), "target_size_mb": self.target_size_mb.get(), "target_bitrate_manual": self.target_bitrate.get(), "vis_cycle": self.vis_cycle.get(), "motion_intensity": self.motion_intensity.get(), "vis_motion_type": self.vis_motion_type.get(), "vis_blend": self.vis_blend.get(), "vis_opacity": self.vis_opacity.get(), "slide_dur_min": self.slide_dur_min.get(), "slide_dur_max": self.slide_dur_max.get(), "mode1_slide_dur_min": self.mode1_slide_dur_min.get(), "mode1_slide_dur_max": self.mode1_slide_dur_max.get(), "mode2_amount": self.mode2_amount.get(), "mode3_amount": self.mode3_amount.get(), "mode3_type": self.mode3_type.get(), "gpu_workers": self.max_gpu_workers.get(), "cpu_workers": self.max_cpu_workers.get(), "video_encoder_choice": encoder_key, "anti_spam_loop": self.enable_anti_spam_loop.get(), "livestream_mode": self.enable_livestream_mode.get(), "mode1_type": self.mode1_type.get(), "force_safe_font": self.force_safe_font.get(), + "logo_scale_min": self.logo_scale_min.get(), "logo_scale_max": self.logo_scale_max.get(), "logo_random_pos": self.logo_random_pos.get(), + "enable_segmented_overlay": self.enable_segmented_overlay.get(), "overlay_seg_min": self.overlay_seg_min.get(), "overlay_seg_max": self.overlay_seg_max.get(), + "mode1_motion_type": self.mode1_motion_type.get(), "mode2_motion_type": self.mode2_motion_type.get(), "xfade_transition_type": self.xfade_transition_type.get(), + "intro_effect_type": self.intro_effect_type.get(), "intro_effect_duration": self.intro_effect_duration.get(), "color_grade_preset": self.color_grade_preset.get(), + "outro_effect_type": self.outro_effect_type.get(), "outro_effect_duration": self.outro_effect_duration.get(), + "nas_motion_type": getattr(self, "nas_motion_type", tk.StringVar(value="Random")).get(), + "nas_transition_type": getattr(self, "nas_transition_type", tk.StringVar(value="Random")).get(), + "fast_mode": self.fast_mode.get(), + "enable_cluster_render": self.enable_cluster_render.get(), + "nas_queue_path": self.nas_queue_path.get() + } + + with self.task_lock: + # Active cluster status for the master object before launching threads + self._active_cluster_mode = config_snapshot.get("enable_cluster_render", False) + + if self.enable_round_robin.get(): + batch_sz = self.round_robin_batch.get() + self.tasks_list = self.apply_round_robin(self.tasks_list, batch_sz) + for idx, t in enumerate(self.tasks_list): self.tree.move(t['idx'], '', idx) + self.log(f"🔄 Đã kích hoạt Round-Robin (Ưu tiên xoay vòng: {batch_sz} file/nhóm)") + + self.pending_tasks = [t for t in self.tasks_list if self.tree.item(t['idx'])['values'][4] == "Waiting"] + + # ===================================================================== + # 🛡️ MASTER SHIELD: Chặn file trùng trước khi đẩy lên NAS + # ===================================================================== + if self._active_cluster_mode and not config_snapshot.get("is_preview", False): + self.log("🛡️ Radar kiểm tra trùng lặp với NAS Queue...") + existing_keys = set() + NAS_Q = config_snapshot.get("nas_queue_path", "") + for folder in ["PENDING", "CLAIMED"]: + d_path = os.path.join(NAS_Q, folder) + if os.path.isdir(d_path): + for fn in os.listdir(d_path): + if fn.endswith(".json"): + try: + with open(os.path.join(d_path, fn), 'r', encoding='utf-8') as jf: + hk = json.load(jf).get("task", {}).get("history_key") + if hk: existing_keys.add(hk) + except: pass + filtered, blocked = [], 0 + for t in self.pending_tasks: + skip_reason = None + safe = re.sub(r'[\\/*?:"<>|]', "", os.path.splitext(t["target_filename"])[0]) + out_path = os.path.join(t["specific_output_root"], f"{safe}.mp4") + if t.get("history_key") in existing_keys: + skip_reason = "Đang nằm trên NAS Queue" + elif config_snapshot.get("check_output", True) and os.path.exists(out_path) and os.path.getsize(out_path) > 5 * 1024 * 1024: + skip_reason = "File Output đã tồn tại" + if skip_reason: + self.msg_queue.put(("status", (t["idx"], "Skipped", skip_reason))) + blocked += 1 + else: + filtered.append(t) + self.pending_tasks = filtered + self.log(f"✅ Master Shield: chặn {blocked} file trùng → còn {len(self.pending_tasks)} file đẩy lên NAS.") + # ===================================================================== + + if config_snapshot.get("multi_pc_sync"): + random.shuffle(self.pending_tasks) + + threading.Thread(target=self.batch_manager, args=(config_snapshot,), daemon=True).start() + + def start_preview(self): + if getattr(self, "processing", False): + return + if not self.tasks_list: messagebox.showwarning("Empty", "No tasks! Scan trước."); return + if not os.path.exists(self.ffmpeg_path.get()): messagebox.showerror("Error", "FFmpeg path invalid!"); return + preview_task = next((t for t in self.tasks_list if "Waiting" in self.tree.item(t["idx"])['values']), None) + if not preview_task and self.tasks_list: preview_task = self.tasks_list[0] + if not preview_task: return + + temp_d = self.temp_dir_path.get(); os.makedirs(temp_d, exist_ok=True) + self.save_project_file() + self.processing = True; self.stop_event.clear(); self.btn_start.config(state=tk.DISABLED); self.start_time = datetime.now(); self.success_count = 0; self.fail_count = 0; self.logged_errors.clear() + + try: res_str = self.resolution_var.get().lower().split('x'); target_w = int(res_str[0]); target_h = int(res_str[1]) + except: return + selected_display_value = self.encoder_combobox.get(); encoder_key = self._encoder_map.get(selected_display_value, "Auto-Detect") + + config_snapshot = { + "ffmpeg": self.ffmpeg_path.get(), "ffprobe": self.ffprobe_path.get(), "temp_dir": temp_d, "target_w": target_w, "target_h": target_h, "source_mode": self.source_mode.get(), "overlay_path": self.overlay_path.get(), "logo_path": self.logo_path.get(), "bg_music_path": self.bg_music_path.get(), "intro_path": self.intro_path.get(), "realesrgan_path": self.realesrgan_path.get(), "enable_ai_upscale": self.enable_ai_upscale.get(), + "check_output": False, "check_history": False, "history_dict": {}, "multi_pc_sync": False, + "enable_sub": self.enable_sub.get(), "scale_mode": self.scale_mode_var.get(), "voice_vol": self.voice_vol.get(), "bgm_vol": self.bgm_vol.get(), "enable_audio_evasion": self.enable_audio_evasion_var.get(), "enable_podcast_filter": self.enable_podcast_filter.get(), "smart_audio_level": self.smart_audio_level.get(), "enable_target_size": False, "target_size_mb": self.target_size_mb.get(), "target_bitrate_manual": self.target_bitrate.get(), "vis_cycle": self.vis_cycle.get(), "motion_intensity": self.motion_intensity.get(), "vis_motion_type": self.vis_motion_type.get(), "vis_blend": self.vis_blend.get(), "vis_opacity": self.vis_opacity.get(), "slide_dur_min": self.slide_dur_min.get(), "slide_dur_max": self.slide_dur_max.get(), "mode1_slide_dur_min": self.mode1_slide_dur_min.get(), "mode1_slide_dur_max": self.mode1_slide_dur_max.get(), "mode2_amount": self.mode2_amount.get(), "mode3_amount": self.mode3_amount.get(), "mode3_type": self.mode3_type.get(), "gen_workers": 1, "video_encoder_choice": encoder_key, "anti_spam_loop": self.enable_anti_spam_loop.get(), "is_preview": True, "livestream_mode": self.enable_livestream_mode.get(), "mode1_type": self.mode1_type.get(), "force_safe_font": self.force_safe_font.get(), + "logo_scale_min": self.logo_scale_min.get(), "logo_scale_max": self.logo_scale_max.get(), "logo_random_pos": self.logo_random_pos.get(), + "enable_segmented_overlay": self.enable_segmented_overlay.get(), "overlay_seg_min": self.overlay_seg_min.get(), "overlay_seg_max": self.overlay_seg_max.get(), + "mode1_motion_type": self.mode1_motion_type.get(), "mode2_motion_type": self.mode2_motion_type.get(), "xfade_transition_type": self.xfade_transition_type.get(), + "intro_effect_type": self.intro_effect_type.get(), "intro_effect_duration": self.intro_effect_duration.get(), "color_grade_preset": self.color_grade_preset.get(), + "outro_effect_type": self.outro_effect_type.get(), "outro_effect_duration": self.outro_effect_duration.get(), + "nas_motion_type": getattr(self, "nas_motion_type", tk.StringVar(value="Random")).get(), + "nas_transition_type": getattr(self, "nas_transition_type", tk.StringVar(value="Random")).get(), + "fast_mode": self.fast_mode.get(), + } + self.log(f"🎬 STARTING PREVIEW: {preview_task['name']} (Max 60s)...") + + with self.task_lock: + self.pending_tasks = [preview_task] + + threading.Thread(target=self.batch_manager, args=(config_snapshot,), daemon=True).start() + + def _broadcast_cluster_kill(self): + self.log("🕸️ Bắn lệnh XỬ Tử khẩn cấp tới 100% Đệ tử qua mạng NAS...") + if self.nas_queue_path.get().strip(): + self._send_worker_cmd("ALL", "KILL_TASK") + + def stop_batch(self): + if self.processing and messagebox.askyesno("Confirm", "Stop all?"): + self.stop_event.set() + self.processing = False + self.watchdog_running = False # Giết Chó săn Watchdog khi dừng batch + self.log("!!! STOPPING ...") + if getattr(self, '_active_cluster_mode', False): + self._broadcast_cluster_kill() + + def on_closing_app(self): + if getattr(self, "processing", False) or getattr(self, "is_worker_mode", False): + if not messagebox.askyesno("Xác nhận", "Hệ thống đang Render hoặc đang là Máy Thợ.\nBạn có chắc chắn muốn TẮT HẲN ứng dụng?"): + return + + # Bắn tín hiệu hủy toàn bộ tiến trình + self.stop_event.set() + self.processing = False + self.watchdog_running = False + + # Kill dứt điểm mọi FFmpeg mồ côi do tool sinh ra + if os.name == 'nt': + os.system("taskkill /f /im ffmpeg.exe >nul 2>&1") + + self.destroy() # Đóng UI, trả lại RAM cho Windows + sys.exit(0) + + def batch_manager(self, cfg): + cluster_mode = getattr(self, '_active_cluster_mode', False) + cluster_label = "BẬT (Máy thợ xử lý)" if cluster_mode else "TẮT (Cục bộ)" + self.log(f"=== BATCH START[Res: {cfg['target_w']}x{cfg['target_h']}] | Cluster: {cluster_label} | Jobs: {len(getattr(self,'pending_tasks',[]))} ===") + + # ---> BẬT RADAR GIÁM SÁT TOÀN CỤC TRƯỚC KHI ĐẨY NHIỆM VỤ <--- + if getattr(self, 'app_role', tk.StringVar()).get() in["MASTER", "LOCAL"]: + self.after(0, self._init_global_watchdog) + + # ⏱ RENDER SPEED MONITOR: Khởi tạo/Reset khi bắt đầu batch + with self.task_lock: + # Ước lượng tổng video (cho ETA) = số file * (min+max)/2 + # Rất thô nhưng đủ để hiện ETA chạy lùi thay vì vô cực + avg_slide = (cfg.get("slide_dur_min", 4.0) + cfg.get("slide_dur_max", 7.0)) / 2 + total_vid_expected = len(self.tasks_list) * 20 * avg_slide # vd 20 ảnh/audio + if getattr(self, 'pending_tasks', None): + total_vid_expected = len(self.pending_tasks) * 20 * avg_slide + + self.render_stats.update({ + 'active': True, + 'batch_start': time.monotonic(), + 'seg_start': 0.0, + 'seg_video_dur': 0.0, + 'total_video_done': 0.0, + 'total_wall_done': 0.0, + 'rtf_current': 0.0, + 'rtf_avg': 0.0, + 'segment_count': 0, + 'total_video_expected': total_vid_expected + }) + + def _test_encoder(name): + try: + # Thêm -pix_fmt yuv420p vì NVENC/AMF sẽ crash nếu input là rgba (mặc định của color lavfi) + cmd = [cfg["ffmpeg"], "-y", "-hide_banner", "-loglevel", "error", "-f", "lavfi", "-i", "color=c=black:s=256x256:r=30", "-vframes", "5", "-pix_fmt", "yuv420p", "-c:v", name, "-f", "null", "-"] + subprocess.run(cmd, check=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, creationflags=subprocess.CREATE_NO_WINDOW) + return True + except: + return False + + encoder_choice = cfg["video_encoder_choice"]; final_encoder = "libx264" + if encoder_choice == "Auto-Detect": + encoders = self.get_available_encoders(cfg["ffmpeg"]) + if "h264_nvenc" in encoders and _test_encoder("h264_nvenc"): final_encoder = "h264_nvenc" + elif "h264_amf" in encoders and _test_encoder("h264_amf"): final_encoder = "h264_amf" + elif "h264_qsv" in encoders and _test_encoder("h264_qsv"): final_encoder = "h264_qsv" + else: final_encoder = encoder_choice + cfg["video_encoder"] = final_encoder; self.log(f"🚀 Using Encoder: {final_encoder.upper()}") + + # Áp dụng số luồng tùy chỉnh theo Encoder đã chọn + is_gpu = any(x in final_encoder for x in ["nvenc", "amf", "qsv"]) + workers = cfg.get("gpu_workers", 3) if is_gpu else cfg.get("cpu_workers", 3) + if workers <= 0: workers = 1 + + self.log(f"🧠 Sử dụng {workers} luồng (Thuần {'GPU' if is_gpu else 'CPU'}).") + + active_futures = set() + + with ThreadPoolExecutor(max_workers=workers) as executor: + while not self.stop_event.is_set(): + done_futures = {f for f in active_futures if f.done()} + active_futures -= done_futures + + with self.task_lock: + while len(active_futures) < workers and self.pending_tasks: + next_task = self.pending_tasks.pop(0) + + if getattr(self, '_active_cluster_mode', False): + # MACRO-TASK DISPATCH (Master mode) + self._dump_macro_task_to_nas(next_task, cfg) + self.msg_queue.put(("status", (next_task["idx"], "✅ Đã đẩy sang NAS", "Chờ Máy Thợ xử lý..."))) + continue + + # Dispatch bình thường (Chạy cục bộ) với CPU Fallback + def _run_task_with_fallback(task, task_cfg): + """Thực thi task với tự động fallback sang CPU nếu GPU fail (error 36)""" + try: + if task.get('_is_nas_project', False): + return self.process_nas_project_task(task, task_cfg) + else: + return self.process_single_task(task, task_cfg) + except Exception as e: + err_str = str(e).lower() + # Phát hiện lỗi AMF/GPU cụ thể: error 36, encoder init fail + is_gpu_fail = any(kw in err_str for kw in [ + 'encoder->init() failed', 'error 36', 'h264_amf', + 'amf_out_of_range', 'could not open encoder', + 'maxium number of b frames' + ]) + if is_gpu_fail and task_cfg.get('video_encoder', '') != 'libx264': + old_enc = task_cfg.get('video_encoder', 'GPU') + self.log(f"⚠️ [GPU FAIL] {task.get('name','?')}: {old_enc.upper()} crash! Auto-fallback sang CPU (libx264)...") + cpu_cfg = dict(task_cfg) + cpu_cfg['video_encoder'] = 'libx264' + cpu_cfg['video_encoder_choice'] = 'libx264' + try: + if task.get('_is_nas_project', False): + return self.process_nas_project_task(task, cpu_cfg) + else: + return self.process_single_task(task, cpu_cfg) + except Exception as e2: + raise e2 # CPU cũng fail → re-raise + else: + raise # Lỗi khác (No Input Found...) → re-raise bình thường + + import copy + future = executor.submit(_run_task_with_fallback, next_task, copy.deepcopy(cfg)) + active_futures.add(future) + + with self.task_lock: + if not active_futures and not self.pending_tasks: + break + + time.sleep(0.5) + + # ⏱ RENDER SPEED MONITOR: Kết thúc batch + self.render_stats['active'] = False + + self.msg_queue.put(("finish_batch", None)); gc.collect() + + def _start_persistent_cmd_listener(self): + """👂 Luôn lắng nghe lệnh từ NAS (kể cả khi đã tắt chế độ Thợ) để nhận lệnh START_WORKER từ xa.""" + def _cmd_listener(): + import time as _t, json as _j, os, socket as _s + SYS_NAME = _s.gethostname() + while True: + _t.sleep(5) + try: + NAS_Q = self.nas_queue_path.get().strip() + except: NAS_Q = "" + if not NAS_Q: continue + DIR_CMD = os.path.join(NAS_Q, "COMMANDS") + DIR_STATE = os.path.join(NAS_Q, "WORKERS_STATE") + if not getattr(self, "is_worker_mode", False): + try: + os.makedirs(DIR_STATE, exist_ok=True) + state_file = os.path.join(DIR_STATE, f"STATE_{SYS_NAME}.json") + state = { + "worker_name": SYS_NAME, + "status": "💤 ĐANG NGỦ (CHỜ LỆNH)", + "last_ping": _t.time(), + "cpu_percent": "N/A", "ram_percent": "N/A", "encoder": "-" + } + tmp = state_file + ".tmp" + with open(tmp, "w", encoding="utf-8") as f: _j.dump(state, f, ensure_ascii=False) + os.replace(tmp, state_file) + except: pass + + if not os.path.isdir(DIR_CMD): continue + try: + for cf in [os.path.join(DIR_CMD, f"CMD_{SYS_NAME}.json"), + os.path.join(DIR_CMD, "CMD_ALL.json")]: + if os.path.exists(cf): + try: + with open(cf, "r") as f: cmd = _j.load(f) + action = cmd.get("action", "") + os.remove(cf) + + if action == "START_WORKER": + self.log(f"🚀 [MASTER] Ra lệnh Khởi động máy thợ từ xa!") + if not getattr(self, "is_worker_mode", False): + self.after(0, self.toggle_worker_mode) + + elif action == "STOP_WORKER": + self.log(f"⚠️ [MASTER] Dừng máy thợ {SYS_NAME} (KILL TOÀN BỘ FFMPEG)") + os.system("taskkill /f /im ffmpeg.exe 2>nul") + if getattr(self, "is_worker_mode", False): + self.is_worker_mode = False + self.after(0, lambda: self.btn_worker.config( + text="🤖 BẬT MÁY THỢ (WORKER 24/7)", bg="#1b1b3a", fg="#00ffcc")) + + elif action == "KILL_TASK": + self.log(f"⏹️ [MASTER] Hủy task đang chạy (KILL LẬP TỨC)") + os.system("taskkill /f /im ffmpeg.exe 2>nul") + self.worker_kill_current = True + + elif action == "SHUTDOWN_PC": + self.log(f"💥 [MASTER] Tắt máy trong 5 giây!") + os.system("shutdown /s /t 5") + + except: pass + except: pass + import threading + threading.Thread(target=_cmd_listener, daemon=True).start() + + def _test_push_one_job(self): + """Tay (để test) — đẩy 1 job test vào PENDING folder.""" + import json as _jj, uuid as _uu + NAS_Q = self.nas_queue_path.get().strip() + if not NAS_Q: + from tkinter import messagebox + messagebox.showwarning("Test", "Chưa nhập Thư mục Queue NAS!") + return + DIR_PENDING = os.path.join(NAS_Q, "PENDING") + os.makedirs(DIR_PENDING, exist_ok=True) + job_id = str(_uu.uuid4())[:8] + payload = { + "job_id": job_id, "type": "macro_task", + "task": { + "id": job_id, "idx": "test_item", "name": f"TEST_JOB_{job_id}.mp3", + "stt": "1", "group_index": 1, "history_key": "test", + "path_audio_srt": NAS_Q, # folder tạm chỉ để test + "specific_srt_json_root": "", "specific_logo_root": "", + "specific_image_root": "", "specific_output_root": NAS_Q, + "path_json_style": None, "target_filename": f"TEST_JOB_{job_id}.mp3", + "info_text": "TEST JOB", "_is_nas_project": False + }, + "cfg": {"ffmpeg": self.ffmpeg_path.get(), "test_mode": True} + } + tmp = os.path.join(DIR_PENDING, f"macro_{job_id}.json.tmp") + dst = os.path.join(DIR_PENDING, f"macro_{job_id}.json") + with open(tmp, "w", encoding="utf-8") as f: + _jj.dump(payload, f, ensure_ascii=False, indent=2) + os.replace(tmp, dst) + self.log(f"📤 TEST: Đã đẩy job {job_id} vào {DIR_PENDING}") + self.log(f" Khi Máy ThỢ bắc được sẽ báo: '⬇️ [Áp] việc: TEST_JOB_{job_id}.mp3'") + + def _send_worker_cmd(self, target_name, action): + NAS_Q = self.nas_queue_path.get().strip() + if not NAS_Q: return + DIR_CMD = os.path.join(NAS_Q, "COMMANDS") + os.makedirs(DIR_CMD, exist_ok=True) + fname = "CMD_ALL.json" if target_name == "ALL" else f"CMD_{target_name}.json" + try: + import json as _j + tmp = os.path.join(DIR_CMD, fname + ".tmp") + with open(tmp, "w") as f: _j.dump({"action": action, "sender": "MASTER"}, f) + os.replace(tmp, os.path.join(DIR_CMD, fname)) + self.log(f"📡 Đã gửi lệnh [{action}] → {target_name}") + except Exception as e: self.log(f"❌ Không gửi được lệnh: {e}") + + def open_cluster_dashboard(self): + NAS_Q = self.nas_queue_path.get().strip() + if not NAS_Q: messagebox.showwarning("Dashboard", "Chưa nhập Thư mục Queue NAS!"); return + dash = tk.Toplevel(self) + dash.title("🖥️ CONTROL CENTER — RENDER FARM") + dash.geometry("960x460"); dash.configure(bg="#0d1117") + hdr = tk.Frame(dash, bg="#0d1117"); hdr.pack(fill=tk.X, padx=15, pady=(12,4)) + tk.Label(hdr, text="🖥️ RENDER FARM CONTROL CENTER", font=("Segoe UI",14,"bold"), fg="#00ffcc", bg="#0d1117").pack(side=tk.LEFT) + lbl_s = tk.Label(hdr, text="", font=("Segoe UI",10), fg="#ffdd00", bg="#0d1117"); lbl_s.pack(side=tk.RIGHT) + sts = ttk.Style(); sts.theme_use("default") + sts.configure("Farm.Treeview", background="#161b22", foreground="white", + fieldbackground="#161b22", font=("Segoe UI",10), rowheight=28) + sts.map("Farm.Treeview", background=[("selected","#0078d7")]) + sts.configure("Farm.Treeview.Heading", background="#21262d", foreground="#58a6ff", font=("Segoe UI",10,"bold")) + cols = ("Máy","CPU","RAM","Encoder","Trạng thái","Tín hiệu") + tree = ttk.Treeview(dash, columns=cols, show="headings", style="Farm.Treeview", height=10) + for c, w in zip(cols, [160,65,65,90,355,140]): + tree.heading(c, text=c); tree.column(c, width=w, anchor="w" if c=="Trạng thái" else "center") + tree.pack(fill=tk.BOTH, expand=True, padx=15, pady=5) + tree.tag_configure("busy", foreground="#00ccff") + tree.tag_configure("idle", foreground="#3fb950") + tree.tag_configure("offline", foreground="#f85149") + bf = tk.Frame(dash, bg="#0d1117"); bf.pack(fill=tk.X, padx=15, pady=8) + def _sel(): s=tree.selection(); return tree.item(s[0])["values"][0] if s else None + def _mk_cmd(act): + n = _sel() + if not n: return + if act != "STOP_WORKER" and not messagebox.askyesno("⚠️", f"Xác nhận [{act}] cho [{n}]?"): return + self._send_worker_cmd(n, act) + def _stop_all(): + if messagebox.askyesno("STOP ALL", "Dừng TẤT CẢ máy thợ?"): self._send_worker_cmd("ALL", "STOP_WORKER") + for txt, bg, act in [("🚀 Bật Máy Chọn", "#2ea043", "START_WORKER"), + ("🛑 Dừng Máy Chọn","#b32424","STOP_WORKER"), + ("⏹️ Hủy Task Đang Chạy","#d97b00","KILL_TASK"), + ("💥 Tắt Nguồn Máy Chọn","#4a1942","SHUTDOWN_PC")]: + tk.Button(bf, text=txt, bg=bg, fg="white", font=("Segoe UI",9,"bold"), + command=lambda a=act: _mk_cmd(a), padx=8).pack(side=tk.LEFT, padx=5) + tk.Button(bf, text="🛑 Dừng TẤT CẢ", bg="#6b0000", fg="white", font=("Segoe UI",9,"bold"), + command=_stop_all, padx=8).pack(side=tk.RIGHT, padx=5) + def _refresh(): + if not dash.winfo_exists(): return + import time as _t, json as _j + DIR_STATE = os.path.join(NAS_Q, "WORKERS_STATE") + DIR_PENDING = os.path.join(NAS_Q, "PENDING") + + # --- LƯU LẠI DÒNG ĐANG CHỌN TRƯỚC KHI XÓA --- + sel_worker = _sel() + + tree.delete(*tree.get_children()) + idle=busy=dead=0 + if os.path.isdir(DIR_STATE): + now = _t.time() + for fn in sorted(os.listdir(DIR_STATE)): + if not fn.endswith(".json"): continue + try: + with open(os.path.join(DIR_STATE, fn), "r", encoding="utf-8") as f: d = _j.load(f) + age = now - d.get("last_ping", 0) + status = d.get("status", "IDLE") + if age <= 35: + ping = "🟢 Live" + tag = "busy" if "Render" in status else "idle" + if "Render" in status: busy += 1 + else: idle += 1 + elif age <= 180: + ping = f"🟡 Gián đoạn ({int(age)}s)" + tag = "busy" if "Render" in status else "idle" + if "Render" in status: busy += 1 + else: idle += 1 + else: + ping = f"🔴 Offline ({int(age)}s)" + tag = "offline" + dead += 1 + worker_name = d.get("worker_name", "?") + try: + cls = [x for x in os.listdir(os.path.join(NAS_Q, "CLAIMED")) if x.startswith(f"claimed_{worker_name}_")] + if len(cls) > 0: + status = f"🔥 Vác {len(cls)} jobs | {status}" + except: pass + cpu = d.get("cpu_percent","N/A"); ram = d.get("ram_percent","N/A") + tree.insert("", "end", values=(d.get("worker_name","?"), + f"{cpu}%" if cpu!="N/A" else cpu, f"{ram}%" if ram!="N/A" else ram, + d.get("encoder","?").upper(), status, ping), tags=(tag,)) + except: pass + + # --- PHỤC HỒI CHỌN LẠI DÒNG NẾU CÓ --- + if sel_worker: + for item in tree.get_children(): + if tree.item(item)["values"][0] == sel_worker: + tree.selection_set(item) + break + + try: pend = len([x for x in os.listdir(DIR_PENDING) if x.startswith("macro_")]) + except: pend = 0 + lbl_s.config(text=f"⚡ Render: {busy} | 💤 Rảnh: {idle} | ☠️ Offline: {dead} | 📋 Queue: {pend}") + dash.after(2000, _refresh) + _refresh() + + def _clear_pending_queue(self): + """Xóa toàn bộ job PENDING còn chờ (không đụng CLAIMED = đang render).""" + from tkinter import messagebox + NAS_Q = self.nas_queue_path.get().strip() + if not NAS_Q: + messagebox.showwarning("Queue", "Chưa nhập Thư mục Queue NAS!"); return + DIR_PENDING = os.path.join(NAS_Q, "PENDING") + if not os.path.isdir(DIR_PENDING): + messagebox.showinfo("Queue", "Folder PENDING không tồn tại."); return + files = [f for f in os.listdir(DIR_PENDING) if f.startswith("macro_") and f.endswith(".json")] + if not files: + messagebox.showinfo("Queue", "Hàng chờ đã trống rồi!"); return + if not messagebox.askyesno("Xóa Queue", + f"Xóa {len(files)} job đang chờ trong PENDING?\n" + f"(Các job đang chạy ở CLAIMED sẽ KHÔNG bị ảnh hưởng)"): + return + deleted = 0 + for f in files: + try: + os.remove(os.path.join(DIR_PENDING, f)) + deleted += 1 + except: pass + self.log(f"🗑️ Đã xóa {deleted}/{len(files)} job khỏi hàng chờ. Các job đang render vẫn tiếp tục.") + + def toggle_worker_mode(self): + if getattr(self, "is_worker_mode", False): + self.is_worker_mode = False + self.btn_worker.config(text="🤖 BẬT MÁY THỢ (WORKER 24/7)", bg="#1b1b3a", fg="#00ffcc") + self.log("Đã TẮT Máy Thợ.") + else: + self.is_worker_mode = True + + def _blink_worker_btn(): + if not getattr(self, 'is_worker_mode', False): return + try: + cbg = self.btn_worker.cget("bg") + nbg = "#8b0000" if cbg == "#ff3366" else "#ff3366" + t = "📡 ĐANG CANH VIỆC TỪ NAS (TRẠM THỢ) - CLICK ĐỂ DỪNG" if cbg == "#ff3366" else "⚡ ĐANG KẾT NỐI MÁY CHỦ (TRẠM THỢ) - CLICK ĐỂ DỪNG" + self.btn_worker.config(bg=nbg, text=t, fg="white") + self.after(800, _blink_worker_btn) + except: pass + + self.btn_worker.config(text="⏹ ĐANG LÀ MÁY THỢ (Click để Dừng)", bg="#ff3366", fg="white") + self.after(800, _blink_worker_btn) + self.log("🤖 ĐÃ BẬT CHẾ ĐỘ MÁY THỢ. Sẽ treo ngầm chờ việc từ NAS...") + threading.Thread(target=self._worker_loop, daemon=True).start() + self._start_nas_watchdog() # Bật Watchdog thu hồi job + self._start_master_radar() # Bật Radar 5s cập nhật Treeview + + def _start_nas_watchdog(self): + """🚑 Watchdog: Tuần tra CLAIMED mỗi 30s, thu hồi job của Worker chết về PENDING.""" + def _watchdog(): + import json as _jw, time as _tw, shutil as _shw + while True: + _tw.sleep(30) + NAS_Q = self.nas_queue_path.get().strip() + if not NAS_Q: continue + DIR_CLAIMED = os.path.join(NAS_Q, "CLAIMED") + DIR_PENDING = os.path.join(NAS_Q, "PENDING") + DIR_STATE = os.path.join(NAS_Q, "WORKERS_STATE") + if not os.path.isdir(DIR_CLAIMED): continue + try: + for f in os.listdir(DIR_CLAIMED): + if not f.startswith("claimed_"): continue + # Cấu trúc: claimed_{HOSTNAME}_{macro_*.json} + rest = f[len("claimed_"):] + # Tìm hostname: phần trước "macro_" + idx = rest.find("_macro_") + if idx < 0: continue + owner = rest[:idx] + orig = "macro_" + rest[idx + len("_macro_"):] + cpath = os.path.join(DIR_CLAIMED, f) + age = _tw.time() - os.path.getmtime(cpath) + # NAS Watchdog Heartbeat: Worker liên tục touch file CLAIMED mỗi 30s. + # Nếu file CLAIMED bị nguội > 180s = Worker đã crash/mất mạng. + if age > 180: + try: + _shw.move(cpath, os.path.join(DIR_PENDING, orig)) + self.log(f"🚑 [WATCHDOG] Thu hồi job '{orig}' từ '{owner}' (offline) → PENDING") + except: pass + except: pass + threading.Thread(target=_watchdog, daemon=True).start() + + def _start_master_radar(self): + """📡 Radar 5s/lần: quét NAS PROGRESS/ cập nhật Treeview từ Máy Thợ (non-blocking).""" + def _radar(): + import time as _t, json as _j + while True: + _t.sleep(5) + NAS_Q = self.nas_queue_path.get().strip() + if not NAS_Q: continue + prog_dir = os.path.join(NAS_Q, "PROGRESS") + if not os.path.isdir(prog_dir): continue + try: + now = _t.time() + for fn in os.listdir(prog_dir): + if not (fn.startswith("PROG_") and fn.endswith(".json")): continue + fp = os.path.join(prog_dir, fn) + if now - os.path.getmtime(fp) > 20: continue # Chỉ đọc file còn "tươi" < 20s + try: + with open(fp, "r", encoding="utf-8") as f: d = _j.load(f) + status = d.get("status", "") + info = d.get("info", "") + worker = d.get("worker", "") + display_info = f"[{worker}] {info}" + # Khớp task theo tên file trong info + tasks_ref = getattr(self, 'tasks_list', []) + getattr(self, 'pending_tasks', []) + for task in tasks_ref: + if task.get("name","") in info or task.get("name","") in status: + idx = task.get("idx") + if idx: + self.after(0, lambda i=idx, s=status: self.tree.set(i,"Status",s) if self.tree.exists(i) else None) + self.after(0, lambda i=idx, s=display_info: self.tree.set(i,"Info",s) if self.tree.exists(i) else None) + except: pass + except: pass + threading.Thread(target=_radar, daemon=True).start() + + def _worker_loop(self): + import json as _json, time as _time, multiprocessing as _mp + import socket as _sock + from concurrent.futures import ThreadPoolExecutor as _Pool + NAS_Q = self.nas_queue_path.get().strip() + if not NAS_Q: + self.log("⚠️ Chưa chọn Thư mục Queue NAS!") + self.is_worker_mode = False + self.btn_worker.config(text="🤖 BẬT MÁY THỢ (WORKER 24/7)", bg="#1b1b3a", fg="#00ffcc") + return + + DIR_PENDING = os.path.join(NAS_Q, "PENDING") + DIR_CLAIMED = os.path.join(NAS_Q, "CLAIMED") + DIR_STATE = os.path.join(NAS_Q, "WORKERS_STATE") + DIR_CMD = os.path.join(NAS_Q, "COMMANDS") + SYS_NAME = _sock.gethostname() + for d in (DIR_PENDING, DIR_CLAIMED, DIR_STATE, DIR_CMD): + try: os.makedirs(d, exist_ok=True) + except Exception as e: self.log(f"⚠️ Không tạo được thư mục: {d} | {e}") + + self.worker_current_task = "IDLE" # Biến theo dõi task hiện tại + self.worker_kill_current = False # Biến flag để hủy task đang chạy + + # \u2500\u2500 HYBRID AUTO-SCALING ENGINE \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 self.log(f"\ud83d\udced \u0110ang canh queue: {DIR_PENDING}") + + # \u2500\u2500 TELEMETRY + COMMAND LISTENER \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 + def _telemetry_loop(): + import json as _js, time as _tm + try: import psutil as _ps; has_ps = True + except: has_ps = False + state_file = os.path.join(DIR_STATE, f"STATE_{SYS_NAME}.json") + while getattr(self, 'is_worker_mode', False): + try: + try: + cpu = _ps.cpu_percent() if has_ps else "N/A" + ram = _ps.virtual_memory().percent if has_ps else "N/A" + except: + cpu = "N/A"; ram = "N/A" + + state = { + "worker_name": SYS_NAME, + "status": getattr(self, 'worker_current_task', 'IDLE'), + "last_ping": _tm.time(), + "cpu_percent": cpu, + "ram_percent": ram, + "encoder": getattr(self, '_worker_enc_label', '?') + } + try: + tmp = state_file + ".tmp" + with open(tmp, "w", encoding="utf-8") as f: _js.dump(state, f, ensure_ascii=False) + os.replace(tmp, state_file) + except: pass + except Exception: + pass + # Chống DDoS NAS: Giãn nhịp tim lên 10 giây (giảm I/O 80%) + _tm.sleep(10) + try: os.remove(state_file) + except: pass + + __import__('threading').Thread(target=_telemetry_loop, daemon=True).start() + claim_lock = __import__('threading').Lock() + + def _claim_one(): + try: + files = [f for f in os.listdir(DIR_PENDING) + if f.startswith('macro_') and f.endswith('.json')] + random.shuffle(files) # Phân tán ngẫu nhiên — 100 máy bốc 100 file khác nhau + except: return None, None + with claim_lock: + for f in files: + src = os.path.join(DIR_PENDING, f) + dst = os.path.join(DIR_CLAIMED, f'claimed_{SYS_NAME}_{f}') + try: + os.rename(src, dst) + try: os.utime(dst, None) # RESET mtime về NOW (tránh lỗi file bị ngâm trong PENDING > 180s mang nguyên mtime cũ sang) + except: pass + return dst, f # Atomic NAS lock + except OSError: continue # Bị máy khác cướp — bỏ qua, thử file tiếp + return None, None + + import subprocess as _sp + ffmpeg_exe = self.ffmpeg_path.get() + + def _test_hw_enc(enc_name): + try: + cmd = [ffmpeg_exe, "-y", "-hide_banner", "-loglevel", "error", + "-f", "lavfi", "-i", "color=c=black:s=256x256:r=30", + "-vframes", "5", "-pix_fmt", "yuv420p", # GPU encoder bắt buộc cần yuv420p + "-c:v", enc_name, "-f", "null", "-"] + _sp.run(cmd, check=True, stdout=_sp.PIPE, stderr=_sp.PIPE, + creationflags=_sp.CREATE_NO_WINDOW) + return True + except: return False + + # Danh sách encoder theo độ ưu tiên (nhanh nhất → CPU fallback) + # Bao phủ: NVIDIA, AMD, Intel, VAAPI(Linux), VideoToolbox(Mac) + GPU_PRIORITY = [ + 'h264_nvenc', # NVIDIA GeForce/RTX/Quadro (Windows/Linux) + 'h264_amf', # AMD Radeon RX/Vega/RDNA (Windows) + 'h264_qsv', # Intel Arc / UHD Graphics (QuickSync) + 'h264_vaapi', # AMD/Intel trên Linux (VAAPI) + 'h264_v4l2m2m', # Raspberry Pi / ARM SoC + ] + + WORKER_GPU_ENC = 'libx264' # Mặc định CPU nếu tất cả GPU fail + try: + r = _sp.run([ffmpeg_exe, '-hide_banner', '-encoders'], + capture_output=True, text=True, timeout=5) + eo = r.stdout + for enc in GPU_PRIORITY: + if enc in eo: + self.log(f"\ud83d\udd0d Test GPU encoder: {enc.upper()}...") + if _test_hw_enc(enc): + WORKER_GPU_ENC = enc + break # Lấy cái tốt nhất đầu tiên thành công + else: + self.log(f" \u26a0\ufe0f {enc.upper()} có trong FFmpeg nhưng phần cứng không hỗ trợ") + except: pass + + # Tính giới hạn luồng cho Worker Mode (Hybrid CPU + GPU) + cores = _mp.cpu_count() or 4 + gpu_slots = self.max_gpu_workers.get() + cpu_slots = self.max_cpu_workers.get() + + ABSOLUTE_MAX = gpu_slots + cpu_slots + if ABSOLUTE_MAX <= 0: ABSOLUTE_MAX = 1 + MAX_GPU_SLOTS = [gpu_slots] + + has_gpu = WORKER_GPU_ENC != 'libx264' + self._worker_enc_label = WORKER_GPU_ENC.upper() + self.log(f"🚀 [HYBRID ENGINE] GPU: {WORKER_GPU_ENC.upper()} | Max slots GPU: {MAX_GPU_SLOTS[0] if has_gpu else 0} | Tổng luồng: {ABSOLUTE_MAX} | Cores: {cores}") + if has_gpu: + self.log(f" => 100% luồng ({MAX_GPU_SLOTS[0]}) khởi đầu bằng GPU — tự động hạ nếu vượt giới hạn phần cứng") + self.log(f" ⚡ Phòng thủ: VRAM Guard (85%) + Self-Tune + Job Fallback + Task Recovery") + + try: import psutil as _psu; has_psu = True + except: has_psu = False; self.log("\u26a0\ufe0f psutil ch\u01b0a c\u00e0i \u2014 kh\u00f4ng gi\u00e1m s\u00e1t CPU/RAM (pip install psutil)") + + active_gpu_count = [0] # List để nonlocal trong Python 3.8 trở xuống + gpu_lock = _mp.Manager().Lock() if False else __import__('threading').Lock() + vram_pct = [0.0] # VRAM usage % (chỉ NVIDIA, AMD/Intel = 0) + + # === PROACTIVE VRAM MONITOR === + # Gọi nvidia-smi 1 lần/5s (nhẹ tênh), cache kết quả + # AMD/Intel không có nvidia-smi → luôn trả 0% (không ảnh hưởng) + def _check_vram_pct(): + try: + r = _sp.run( + ['nvidia-smi', '--query-gpu=memory.used,memory.total', '--format=csv,noheader,nounits'], + capture_output=True, text=True, timeout=3, + creationflags=_sp.CREATE_NO_WINDOW if os.name == 'nt' else 0 + ) + if r.returncode == 0 and r.stdout.strip(): + parts = r.stdout.strip().split(',') + used, total = float(parts[0].strip()), float(parts[1].strip()) + if total > 0: + return round(used / total * 100, 1) + except: pass + return 0.0 # Không có nvidia-smi (AMD/Intel) hoặc lỗi → 0% + + def _do_job(claimed_path, fname, enc, is_gpu): + task_name_log = fname + job_success = False # Track thành công để quyết định xóa hay trả claimed + _stop_claim = [] + def _claim_refresher(): + import time as _tc, os as _oc + while not _stop_claim: + _tc.sleep(30) + if _stop_claim: break + try: _oc.utime(claimed_path, None) + except: pass + __import__('threading').Thread(target=_claim_refresher, daemon=True).start() + + try: + with open(claimed_path, 'r', encoding='utf-8') as fp: + payload = _json.load(fp) + task = payload['task'] + cfg = payload['cfg'] + cfg['video_encoder'] = enc + cfg['video_encoder_choice'] = enc + cfg['ffmpeg'] = self.ffmpeg_path.get() + cfg['ffprobe'] = self.ffprobe_path.get() + cfg['realesrgan_path'] = self.realesrgan_path.get() + local_temp = os.path.join(tempfile.gettempdir(), "RenderFarm_Cache", SYS_NAME) + os.makedirs(local_temp, exist_ok=True) + cfg['temp_dir'] = local_temp + task_name_log = task.get('name', fname) + self.worker_current_task = f"\ud83c\udfa5 Render({enc.upper()}): {task_name_log}" + self.log(f"\u2b07\ufe0f [TH\u1ee2-{SYS_NAME}] \u00c1p vi\u1ec7c: {task_name_log} | Enc: {enc.upper()}") + if task.get('_is_nas_project', False): + self.process_nas_project_task(task, cfg) + else: + self.process_single_task(task, cfg) + self.log(f"✅ [THỢ-{SYS_NAME}] XONG: {task_name_log}") + job_success = True + except Exception as e: + self.log(f"❌ [THỢ-{SYS_NAME}] Lỗi {task_name_log}: {e}") + + # === GPU SELF-TUNING FALLBACK === + if is_gpu and enc != 'libx264': + with gpu_lock: + old_max = MAX_GPU_SLOTS[0] + MAX_GPU_SLOTS[0] = max(1, old_max - 1) + self.log(f"⚠️ [AUTO-TUNE] GPU session overflow! Hạ MAX_GPU_SLOTS: {old_max} → {MAX_GPU_SLOTS[0]}") + + try: + self.log(f"♻️ [FALLBACK] Retry {task_name_log} bằng CPU (libx264)...") + cfg['video_encoder'] = 'libx264' + cfg['video_encoder_choice'] = 'libx264' + self.worker_current_task = f"\ud83c\udfa5 Retry(CPU): {task_name_log}" + if task.get('_is_nas_project', False): + self.process_nas_project_task(task, cfg) + else: + self.process_single_task(task, cfg) + self.log(f"✅ [FALLBACK] Retry CPU thành công: {task_name_log}") + job_success = True + except Exception as e2: + self.log(f"❌ [FALLBACK] CPU cũng fail: {task_name_log}: {e2}") + finally: + _stop_claim.append(True) + if is_gpu: + with gpu_lock: active_gpu_count[0] = max(0, active_gpu_count[0] - 1) + self.worker_current_task = "IDLE" + self.worker_kill_current = False + # Dọn temp + try: + import shutil as _sh + task_id = task.get('id', '') if 'task' in dir() else '' + task_temp = os.path.join(local_temp, task_id) if task_id else None + if task_temp and os.path.isdir(task_temp): + _sh.rmtree(task_temp, ignore_errors=True) + except: pass + # === TASK RECOVERY: Thành công → xóa claimed | Thất bại → trả về PENDING === + if job_success: + try: os.remove(claimed_path) + except: pass + else: + # Cả GPU + CPU đều fail → trả task về hàng chờ để máy khác nhặt + try: + import shutil as _sh2 + orig_fname = fname # tên file gốc trong PENDING + dst = os.path.join(DIR_PENDING, orig_fname) + if os.path.exists(claimed_path): + _sh2.move(claimed_path, dst) + self.log(f"📤 [RECOVERY] Trả task '{task_name_log}' về PENDING để máy khác thử lại!") + except Exception as e_rec: + self.log(f"⚠️ [RECOVERY] Không trả được claimed về PENDING: {e_rec}") + try: os.remove(claimed_path) # Last resort: xóa để không kẹt + except: pass + + last_status = 0 + # 🧹 Dọn sạch cache cũ từ lần trước crash (orphan temp > 2 tiếng) + try: + import shutil as _sh, time as _t2 + stale_root = os.path.join(tempfile.gettempdir(), "RenderFarm_Cache", SYS_NAME) + if os.path.isdir(stale_root): + now2 = _t2.time() + for d in os.listdir(stale_root): + dp = os.path.join(stale_root, d) + if os.path.isdir(dp) and (now2 - os.path.getmtime(dp)) > 7200: + _sh.rmtree(dp, ignore_errors=True) + self.log(f"🧹 Đã dọn cache cũ tại {stale_root}") + except: pass + pool = _Pool(max_workers=ABSOLUTE_MAX) + try: + active = set() + while getattr(self, 'is_worker_mode', False): + # 🛑 KHI CÓ LỆNH KILL_TASK HOẶC STOP_WORKER => QUÉT SẠCH HÀNG CHỜ CỦA THREADPOOL + if getattr(self, 'worker_kill_current', False): + self.worker_kill_current = False + try: + pool._work_queue.queue.clear() # Xóa sạch các luồng chưa kịp chạy + except: pass + + done = {f for f in active if f.done()} + active -= done + + now = _time.time() + # \u0110o CPU/RAM th\u1ef1c t\u1ebf (phanh an to\u00e0n) + if has_psu: + cpu_pct = _psu.cpu_percent(interval=0.1) + ram_pct = _psu.virtual_memory().percent + can_take = cpu_pct < 85.0 and ram_pct < 80.0 + else: + cpu_pct = ram_pct = 0; can_take = True + + if now - last_status > 5: + try: pend = len([x for x in os.listdir(DIR_PENDING) if x.startswith('macro_')]) + except: pend = 0 + # === PROACTIVE VRAM CHECK (1 lần/5s, nhẹ tênh) === + if has_gpu and 'nvenc' in WORKER_GPU_ENC: + vram_pct[0] = _check_vram_pct() + self.log(f"\ud83d\udcca CPU {cpu_pct:.0f}% | RAM {ram_pct:.0f}% | VRAM {vram_pct[0]:.0f}% | Lu\u1ed3ng: {len(active)}/{ABSOLUTE_MAX} | GPU: {active_gpu_count[0]}/{MAX_GPU_SLOTS[0]} | Pending: {pend}") + last_status = now + + # Nạp thêm việc nếu máy còn khoẻ + while can_take and len(active) < ABSOLUTE_MAX: + cp, fn = _claim_one() + if not cp: break + # Phân bổ encoder: GPU trước, rồi mới CPU + # VRAM guard: nếu VRAM > 85% → ép CPU cho task mới (task cũ vẫn chạy GPU) + with gpu_lock: + vram_ok = vram_pct[0] < 85.0 + if has_gpu and active_gpu_count[0] < MAX_GPU_SLOTS[0] and vram_ok: + enc = WORKER_GPU_ENC; is_gpu = True + active_gpu_count[0] += 1 + else: + enc = 'libx264'; is_gpu = False + if not vram_ok: + self.log(f"⚠️ [VRAM GUARD] VRAM {vram_pct[0]:.0f}% > 85% → ép CPU cho task mới") + fut = pool.submit(_do_job, cp, fn, enc, is_gpu) + active.add(fut) + + _time.sleep(1.0) + finally: + pool.shutdown(wait=False) + + def _dump_macro_task_to_nas(self, task, cfg): + import json as _json + import uuid as _uuid + NAS_Q = cfg.get("nas_queue_path", "") + if not NAS_Q: + self.log("⚠️ Lỗi: Chưa chọn Thư mục Queue trong giao diện!") + return + + DIR_PENDING = os.path.join(NAS_Q, "PENDING") + for d in (DIR_PENDING, os.path.join(NAS_Q, "CLAIMED"), os.path.join(NAS_Q, "DONE"), os.path.join(NAS_Q, "PROGRESS")): + try: os.makedirs(d, exist_ok=True) + except: pass + + job_id = task['id'][:8] + + # Chỉ giữ lại các kiểu dữ liệu có thể serialize ra JSON + cfg_clean = {k: v for k, v in cfg.items() if isinstance(v, (str, int, float, bool, list, dict, type(None)))} + task_clean = {k: v for k, v in task.items() if isinstance(v, (str, int, float, bool, list, dict, type(None)))} + + payload = { + "job_id": job_id, + "type": "macro_task", + "task": task_clean, + "cfg": cfg_clean + } + + tmp_file = os.path.join(DIR_PENDING, f"macro_{job_id}.json.tmp") + pend_file = os.path.join(DIR_PENDING, f"macro_{job_id}.json") + try: + with open(tmp_file, "w", encoding="utf-8") as f: + _json.dump(payload, f, ensure_ascii=False, indent=2) + os.replace(tmp_file, pend_file) + except Exception as e: + self.log(f"Lỗi khi đẩy Macro Task Lên NAS: {e}") + + + def _find_matching_media_files(self, folder, stt, exts, find_multiple=False): + if not folder or not os.path.isdir(folder) or stt is None: return [] + matches =[]; + try: + prefix_pattern = re.compile(rf"^{re.escape(stt)}(?!\d)") + for filename in os.listdir(folder): + if prefix_pattern.match(filename) and filename.lower().endswith(exts): + full_path = os.path.join(folder, filename) + if find_multiple: matches.append(full_path) + else: return[full_path] + except Exception as e: self.log(f"Error while searching for files in '{folder}': {e}") + + def natural_keys(text): + return [int(c) if c.isdigit() else c.lower() for c in re.split(r'(\d+)', text)] + + if find_multiple and matches: + matches.sort(key=natural_keys) + + return matches + + def process_single_task(self, task, cfg): + task_name = task.get('name', 'Unknown Task') + t_id, stt = task["idx"], task["stt"] + history_key = task['history_key'] + task_temp = os.path.join(cfg["temp_dir"], task["id"]) + + try: + self.msg_queue.put(("status", (t_id, "Prep", "Starting..."))) + + if cfg["check_history"] and history_key in cfg["history_dict"] and not cfg.get("is_preview", False): + self.log(f"[{task_name}] ⏭️ Bỏ qua vì ĐÃ CÓ TRONG LỊCH SỬ RENDER.") + self.msg_queue.put(("status", (t_id, "Skipped", "Bỏ qua (Lịch sử)"))) + self.msg_queue.put(("history_skipped", None)) + return + + shutil.rmtree(task_temp, ignore_errors=True) + os.makedirs(task_temp, exist_ok=True) + + spec_out_root = task.get("specific_output_root", ""); final_folder = spec_out_root + os.makedirs(final_folder, exist_ok=True) + base_name = os.path.splitext(task["target_filename"])[0] + safe_name = re.sub(r'[\\/*?:"<>|]', "", base_name) + if cfg.get("is_preview", False): safe_name += "_PREVIEW" + final_out_path = os.path.join(final_folder, f"{safe_name}.mp4") + + if cfg.get("multi_pc_sync"): + lock_file_path = final_out_path + ".lock" + tmp_nas_path = final_out_path + ".tmp" + import socket as _sock2, json as _jlock + + def _try_acquire_lock(): + """Lấy Smart Lock. Tr\u1ea3 v\u1ec1 True n\u1ebfu th\u00e0nh c\u00f4ng.""" + my_name = _sock2.gethostname() + nas_q = cfg.get("nas_queue_path", "") + for _attempt in range(2): + try: + fd = os.open(lock_file_path, os.O_CREAT | os.O_EXCL | os.O_WRONLY) + os.write(fd, _jlock.dumps({"worker": my_name, "timestamp": time.time()}).encode()) + os.close(fd) + return True + except FileExistsError: + # Ki\u1ec3m tra ch\u1ee7 kh\u00f3a c\u00f3 c\u00f2n s\u1ed1ng kh\u00f4ng + try: + with open(lock_file_path, "r", encoding="utf-8") as f: + info = _jlock.load(f) + owner = info.get("worker", "Unknown") + is_dead = time.time() - os.path.getmtime(lock_file_path) > 120 + except: + is_dead = time.time() - os.path.getmtime(lock_file_path) > 120 + + if is_dead: + self.log(f"[{task_name}] \ud83d\udd13 C\u01b0\u1ee1ng ch\u1ebf kh\u00f3a t\u1eeb m\u00e1y '{owner}' (offline/crash)!") + try: os.remove(lock_file_path) + except: pass + try: os.remove(tmp_nas_path) + except: pass + time.sleep(0.3); continue + else: + self.log(f"[{task_name}] \u23ed\ufe0f B\u1ecf qua: '{owner}' v\u1eabn \u0111ang s\u1ed1ng & x\u1eed l\u00fd task n\u00e0y.") + self.msg_queue.put(("status", (t_id, "Skipped", f"Render b\u1edfi {owner}"))) + return None # None = b\u1ecf qua h\u1eb3n + return False # False = th\u1ed1t b\u1ea1i, th\u1eed l\u1ea1i sau + + result = _try_acquire_lock() + if result is None: return + if not result: + self.log(f"[{task_name}] \u26a0\ufe0f Kh\u00f4ng l\u1ea5y \u0111\u01b0\u1ee3c kh\u00f3a. B\u1ecf qua.") + self.msg_queue.put(("status", (t_id, "Skipped", "Lock fail"))); return + + # --- KIỂM TRA CHẤT LƯỢNG OUTPUT CŨ (BPP Sát Hạch) --- + if cfg.get('check_output', True) and not cfg.get('is_preview', False): + if os.path.exists(final_out_path): + if self._is_valid_existing_output(final_out_path, cfg['target_w'], cfg['target_h'], cfg['ffprobe'], task_name): + self.log(f"[{task_name}] ⏭️ Bỏ qua: File ĐÃ TỒN TẠI và ĐẠT CHUẨN.") + self.msg_queue.put(('status', (t_id, 'Skipped', 'Đã tồn tại (Chuẩn)'))) + self.msg_queue.put(('history_skipped', None)) + return + else: + self.msg_queue.put(('status', (t_id, 'Fixing', 'Đang sửa file lỗi cũ...'))) + + self.msg_queue.put(("status", (t_id, "Processing...", f"Mode ONE-PASS"))) + + search_dir = task["path_audio_srt"] + aud_src = os.path.join(search_dir, task["target_filename"]) + if not os.path.exists(aud_src): raise FileNotFoundError(f"Audio source not found: {aud_src}") + + potential_srt = os.path.join(search_dir, base_name + ".srt") + srt_src = potential_srt if os.path.exists(potential_srt) else None + + audio_duration = self.get_media_duration(cfg["ffprobe"], aud_src) or 300 + if cfg.get("is_preview", False): audio_duration = min(audio_duration, 60.0) + + # TÍNH TOÁN THÔNG SỐ LÁCH ÂM THANH (Không render trung gian) + evasion_params = {} + if cfg["enable_audio_evasion"]: + evasion_params = {'speed': round(random.uniform(1.02, 1.05), 3), 'pitch': round(random.uniform(1.01, 1.03), 3), 'low_cut': random.randint(100, 180), 'high_cut': random.randint(8000, 10000)} + task['audio_speed_factor'] = evasion_params['speed'] + else: + task['audio_speed_factor'] = 1.0 + + input_files =[]; mode = cfg["source_mode"]; primary_search_path = task.get("specific_image_root", "") or task["path_audio_srt"] + exts_vid = ('.mp4', '.mov', '.avi', '.mkv'); exts_img = ('.jpg', '.png', '.jpeg', '.bmp') + render_mode_for_visuals = mode + task['_from_mode1_multi'] = False + if mode == 1: + if stt is None: raise ValueError(f"Mode 1 Error: Task '{task_name}' has no STT.") + is_multi_match = cfg.get("mode1_type", "Single") == "Multi" + input_files = self._find_matching_media_files(primary_search_path, stt, exts_img + exts_vid, find_multiple=is_multi_match) + if input_files and is_multi_match: + render_mode_for_visuals = 2 + task['_from_mode1_multi'] = True + elif mode == 2: + if primary_search_path and os.path.isdir(primary_search_path): input_files =[os.path.join(primary_search_path, f) for f in os.listdir(primary_search_path) if f.lower().endswith(exts_img)] + elif mode == 3: + if primary_search_path and os.path.isdir(primary_search_path): input_files =[os.path.join(primary_search_path, f) for f in os.listdir(primary_search_path) if f.lower().endswith(exts_vid)] + if not input_files: raise FileNotFoundError(f"No Input Found (Mode {mode}) for '{task_name}' in '{primary_search_path}'") + + # --- AI SUPER RESOLUTION PRE-PROCESSING --- + if cfg.get("enable_ai_upscale", False) and cfg.get("realesrgan_path", ""): + esrgan_exe = cfg.get("realesrgan_path", "") + if os.path.exists(esrgan_exe): + for idx, img_path in enumerate(input_files): + if img_path.lower().endswith(('.jpg', '.jpeg', '.png', '.bmp', '.webp')): + up_dir = os.path.join(task_temp, "esrgan_cache") + os.makedirs(up_dir, exist_ok=True) + upscaled_path = os.path.join(up_dir, f"up_{idx}.png") + + if not os.path.exists(upscaled_path): + self.log(f"[{task_name}] 💥 AI Upscale 4K: {os.path.basename(img_path)}") + base_cmd = [esrgan_exe, '-i', img_path, '-o', upscaled_path, '-s', '4', '-n', 'realesrgan-x4plus'] + success = False + with self.esrgan_lock: + # Lần 1: Thử GPU (mặc định) + try: + subprocess.run(base_cmd, check=True, creationflags=subprocess.CREATE_NO_WINDOW, timeout=120) + success = True + except Exception as e_gpu: + self.log(f"[{task_name}] ⚠️ GPU Upscale thất bại ({e_gpu}). Đang thử lại bằng CPU (-g -1)...") + # Lần 2: Fallback sang CPU + try: + cpu_cmd = base_cmd + ['-g', '-1'] + subprocess.run(cpu_cmd, check=True, creationflags=subprocess.CREATE_NO_WINDOW, timeout=900) + success = True + self.log(f"[{task_name}] ✅ CPU Upscale thành công!") + except Exception as e_cpu: + self.log(f"⚠️ CPU Upscale cũng thất bại: {e_cpu}. Dùng ảnh gốc.") + + if os.path.exists(upscaled_path) and os.path.getsize(upscaled_path) > 100: + input_files[idx] = upscaled_path + + local_ass = None + if cfg["enable_sub"] and srt_src: + current_style = dict(cfg.get("style", self.srt_settings)) # Ưu tiên style của Master gửi sang + json_style_path = task.get("path_json_style") + if json_style_path and os.path.exists(json_style_path): + try: + with open(json_style_path, 'r', encoding='utf-8') as f: + local_style = json.load(f) + if isinstance(local_style, dict): + saved_bbox = current_style.get("bounding_box") + current_style.update(local_style) + if saved_bbox: current_style["bounding_box"] = saved_bbox + except Exception as e: + self.log(f"⚠️ Lỗi đọc JSON định dạng phụ đề riêng cho {aud_name}: {e}") + + if cfg.get("force_safe_font", False): current_style["fontname"] = "Arial" + current_style["scale_mode"] = cfg.get("scale_mode", "Dynamic") + + ass_path = os.path.join(task_temp, "sub.ass") + if self.generate_ass(srt_src, ass_path, current_style, task.get('audio_speed_factor', 1.0), cfg["target_w"], cfg["target_h"]): + local_ass = ass_path + + self.msg_queue.put(("status", (t_id, "Render Loop", "Creating Base Visual..."))) + + # --- TỐI ƯU CỰC ĐẠI: CHỈ RENDER BASE LOOP (Ngắn) – CLEAN, KHÔNG INTRO --- + local_vis_base = os.path.join(task_temp, "vis_base_short.mp4") + self.render_ffmpeg_visuals_short(render_mode_for_visuals, input_files, task, local_vis_base, cfg) + + # --- ÉP CROSSFADE BẤT HỦ CHO VÒNG LẶP (Chống Nhảy Khựng) --- + # Áp dụng triệt để cho: Mode 2 (Tránh cắt nhảy cảnh lúc lặp Slideshow), Mode 3 (Video dài chắp vá) + # Yêu cầu: KHÔNG áp dụng cho video sử dụng 1 ảnh / 1 back đơn lẻ. + is_vid_input = input_files[0].lower().endswith(('.mp4', '.mov', '.avi', '.mkv')) if input_files else False + is_single_asset = len(input_files) == 1 if input_files else True + + if os.path.exists(local_vis_base) and not is_single_asset and (render_mode_for_visuals in [2, 3] or is_vid_input): + b_dur = self.get_media_duration(cfg["ffprobe"], local_vis_base) + if b_dur > 4.0: + self.log(f"[{task_name}] Đúc Vòng Lặp Vô Cực (Cinematic Loop Xfade)...") + temp_sml = os.path.join(task_temp, "vis_seamless.mp4") + self.create_seamless_loop(local_vis_base, temp_sml, b_dur, task_name, cfg) + if os.path.exists(temp_sml): shutil.move(temp_sml, local_vis_base) + + # --- RENDER INTRO CLIP RIÊNG (Chỉ cho Mode 1 & 2, chỉ ảnh) --- + local_intro_clip = None + intro_effect_raw = cfg.get("intro_effect_type", "None") + intro_dur = cfg.get("intro_effect_duration", 3.0) + if intro_effect_raw != "None" and render_mode_for_visuals in [1, 2]: + # Lấy source ảnh đầu tiên cho intro + intro_source = input_files[0] if input_files else None + if intro_source and intro_source.lower().endswith(('.jpg', '.png', '.jpeg', '.bmp')): + chosen_intro = intro_effect_raw if intro_effect_raw != "Random" else random.choice(INTRO_EFFECTS_LIST) + local_intro_clip = os.path.join(task_temp, "intro_clip.mp4") + w, h = cfg["target_w"], cfg["target_h"] + self.log(f"[{task_name}] [INTRO] Rendering intro clip: {chosen_intro} ({intro_dur}s)") + self._render_image_with_intro(intro_source, local_intro_clip, w, h, intro_dur, 30, + None, "Screen", 0.8, intro_dur, + "Static", chosen_intro, intro_dur, cfg, task_name) + + self.msg_queue.put(("status", (t_id, "Super Mux", "One-Pass Packaging..."))) + bitrate_kbps = 2500 + if cfg["livestream_mode"]: bitrate_kbps = 6000 if cfg['target_w'] >= 1920 else 4000 + elif cfg["enable_target_size"] and audio_duration > 0: + vid_kb = (cfg["target_size_mb"] * 8192) - (192 * audio_duration); + if vid_kb > 0: bitrate_kbps = int(vid_kb / audio_duration * 0.95) + elif cfg["target_bitrate_manual"].strip().isdigit(): bitrate_kbps = int(cfg["target_bitrate_manual"].strip()) + + temp_final_mp4 = os.path.join(task_temp, f"{safe_name}_TEMP_FINAL.mp4") + + # --- ONE PASS PIPELINE --- + spec_logo_root = task.get("specific_logo_root", "") + intro_path_value = cfg["intro_path"] + if intro_path_value and os.path.exists(intro_path_value): + # Có Intro: Encode nội dung chính, sau đó copy concat nhanh + main_content_mp4 = os.path.join(task_temp, "main_content.mp4") + self.run_super_fast_one_pass_mux(local_vis_base, aud_src, local_ass, main_content_mp4, bitrate_kbps, cfg, task_name, t_id, evasion_params, audio_duration, logo_folder=spec_logo_root, intro_clip=local_intro_clip) + + self.msg_queue.put(("status", (t_id, "Concat", "Adding Intro..."))) + intro_prepared_mp4 = os.path.join(task_temp, "intro_prepared.mp4") + self.prepare_intro_for_concat(intro_path_value, intro_prepared_mp4, bitrate_kbps, cfg, task_name) + self.fast_concat_videos([intro_prepared_mp4, main_content_mp4], temp_final_mp4, task_name, cfg) + else: + # Không Intro file: One-pass thẳng ra file cuối (vẫn có intro animation clip nếu được render) + self.run_super_fast_one_pass_mux(local_vis_base, aud_src, local_ass, temp_final_mp4, bitrate_kbps, cfg, task_name, t_id, evasion_params, audio_duration, logo_folder=spec_logo_root, intro_clip=local_intro_clip) + + if os.path.exists(temp_final_mp4) and os.path.getsize(temp_final_mp4) > 1024: + # ✅ CHECK #1 — THỜI LƯỢNG LOCAL: Đảm bảo file temp đủ thời lượng (tính cả Evasion Speed) + final_dur = self.get_media_duration(cfg["ffprobe"], temp_final_mp4) + if audio_duration > 0 and final_dur > 0: + expected_dur = audio_duration + if cfg.get("enable_audio_evasion") and evasion_params: + expected_dur = audio_duration / evasion_params.get('speed', 1.0) + if intro_path_value and os.path.exists(intro_path_value): + expected_dur += self.get_media_duration(cfg["ffprobe"], intro_path_value) + diff_sec = expected_dur - final_dur + if diff_sec > max(15, expected_dur * 0.10): # Sai số cho phép: 10% hoặc 15 giây + self.msg_queue.put(("status", (t_id, "Error", f"Thiếu thời lượng! Gốc {expected_dur:.1f}s, Mux {final_dur:.1f}s"))) + raise Exception(f"Video đầu ra bị thiếu thời lượng! (Cần: {expected_dur:.1f}s, Render ra: {final_dur:.1f}s). Lỗi FFmpeg ngắt sớm.") + + # Bảo vệ file khỏi corrupt khi upload NAS (nguyên tử hóa & verify) + nas_temp_path = final_out_path + ".tmp" + max_retries = 3 + moved_successfully = False + original_size = os.path.getsize(temp_final_mp4) + + for attempt in range(max_retries): + try: + # Copy an toàn để giữ file gốc trong trường hợp lỗi mạng + if os.path.exists(temp_final_mp4): + shutil.copy2(temp_final_mp4, nas_temp_path) + + # Kiểm tra file tmp trên NAS có toàn vẹn không + if os.path.exists(nas_temp_path) and os.path.getsize(nas_temp_path) == original_size: + # Đổi tên Atomic (An toàn, ko bị ngắt nửa chừng) + try: + os.replace(nas_temp_path, final_out_path) + except OSError: + # Fallback nếu OS chặn Replace trên Network Drive + shutil.move(nas_temp_path, final_out_path) + moved_successfully = True + break + else: + raise IOError("Kích thước tệp trên NAS không khớp với kích thước tệp xử lý.") + except Exception as e: + if attempt < max_retries - 1: + self.log(f"Lỗi khi copy lên NAS (Lần {attempt+1}): {e}, thử lại...") + time.sleep(2) + else: + self.log(f"Lỗi copy NAS (Lần cuối): {e}") + + if moved_successfully and os.path.exists(final_out_path): + # ✅ CHECK #2 — THỜI LƯỢNG NAS: Chốt chặn cuối, chống lỗi cắt xén khi upload + if audio_duration > 0 and not cfg.get("is_preview", False): + nas_vid_dur = self.get_media_duration(cfg["ffprobe"], final_out_path) + nas_expected = audio_duration / (evasion_params.get('speed', 1.0) if cfg.get("enable_audio_evasion") and evasion_params else 1.0) + if nas_vid_dur > 0 and (nas_expected - nas_vid_dur) > max(15, nas_expected * 0.10): + self.log(f"[{task_name}] ⚠️ File NAS bị cắt xén ({nas_vid_dur:.0f}s/{nas_expected:.0f}s). Tự xóa để render lại!") + try: os.remove(final_out_path) + except: pass + raise Exception(f"File NAS bị thiếu thời lượng sau upload ({nas_vid_dur:.0f}s / cần {nas_expected:.0f}s). Xóa & Re-render!") + with self.task_lock: self.success_count += 1 + self.msg_queue.put(("status", (t_id, "Done", "Success!"))) + if not cfg.get("is_preview", False): + self.msg_queue.put(("task_done", history_key)) + else: + # Dọn dẹp rác tmp trên NAS nếu có + if os.path.exists(nas_temp_path): + try: os.remove(nas_temp_path) + except: pass + raise IOError("Không thể copy file an toàn lên NAS do mạng hoặc NAS đầy.") + else: raise Exception("Render output is invalid or zero-size.") + + except Exception as e: + with self.task_lock: self.fail_count += 1 + error_message = str(e) + self.msg_queue.put(("status", (t_id, "Error", error_message.splitlines()[-1]))) + if error_message not in self.logged_errors: self.logged_errors.add(error_message); self.log(f"--- ERROR ---\nTask '{task_name}':\n{error_message}") + finally: + try: shutil.rmtree(task_temp, ignore_errors=True) + except: pass + if cfg.get("multi_pc_sync"): + try: + import socket as _sf, json as _jf + lp = final_out_path + ".lock" + if os.path.exists(lp): + with open(lp, 'r', encoding='utf-8') as f: li = _jf.load(f) + if li.get('worker') == _sf.gethostname(): os.remove(lp) # Chỉ xóa nếu chính mình tạo + except: + try: os.remove(final_out_path + ".lock") + except: pass + + # ================================================================= + # OPENCV RENDER PATH FOR PARALLAX (Bồng Bềnh gốc) + # ================================================================= + def cv2_imread(self, path, flags=cv2.IMREAD_UNCHANGED): + stream = open(path, "rb") + bytes_arr = bytearray(stream.read()) + numpyarray = np.asarray(bytes_arr, dtype=np.uint8) + return cv2.imdecode(numpyarray, flags) + + def cv2_imwrite(self, path, img, ext=".jpg"): + """Lưu ảnh an toàn bằng Numpy, chống lỗi đường dẫn Tiếng Việt (Unicode) trên Windows""" + try: + is_success, im_buf_arr = cv2.imencode(ext, img) + if is_success: + im_buf_arr.tofile(path) + return True + return False + except Exception as e: + print(f"Lỗi cv2_imwrite: {e}") + return False + + def prep_image_for_res(self, img, target_w, target_h): + h, w = img.shape[:2] + scale = max(target_w/w, target_h/h) + nw, nh = int(w*scale), int(h*scale) + res = cv2.resize(img, (nw, nh), interpolation=cv2.INTER_LANCZOS4) + y, x = (nh-target_h)//2, (nw-target_w)//2 + return res[y:y+target_h, x:x+target_w] + + def apply_motion(self, crop_base, p, w, h, chosen_motion, cfg=None): + motion_val = 0.0 + if chosen_motion == "Bồng Bềnh (Parallax)": motion_val = 1.3 + elif chosen_motion == "Bồng Bềnh Nhẹ (Romantic)": motion_val = 0.4 + # Sử dụng sóng hình sin để hành trình tăng giảm tốc mượt như Gimbal máy quay thực thụ + rad = p * 2 * math.pi + gimbal = (1 - math.cos(rad)) / 2 + + zoom = 1.0; ang = 0.0; dx = 0.0; dy = 0.0 + + amp = cfg.get("motion_intensity", 1.0) if cfg else 1.0 + def zbuf(x): return 1.0 + x * amp + + if motion_val > 0: + zoom = zbuf(0.015) + (motion_val * 0.01 * amp) * gimbal + ang = (motion_val * 0.25 * amp) * math.sin(rad) + elif chosen_motion == "Deep Breathe (Focus)": + zoom = zbuf(0.0) + (0.015 * amp) * gimbal + elif chosen_motion == "Slow Pan Diagonal": + zoom = zbuf(0.01) + dx = (w * 0.01 * amp) * gimbal + dy = (h * 0.01 * amp) * gimbal + elif "Zoom In" in chosen_motion: + zoom = zbuf(0.0) + (0.015 * amp) * gimbal + elif "Zoom Out" in chosen_motion: + zoom = zbuf(0.015) - (0.015 * amp) * gimbal + elif "Pan Left" in chosen_motion: + zoom = zbuf(0.01) + dx = (w * 0.01 * amp) * gimbal + elif "Pan Right" in chosen_motion: + zoom = zbuf(0.01) + dx = -(w * 0.01 * amp) * gimbal + + elif chosen_motion == "Ken Burns (Zoom Pan)": + zoom = zbuf(0.02) + (0.015 * amp) * gimbal + dx = (w * 0.01 * amp) * gimbal + dy = (h * 0.01 * amp) * gimbal + elif chosen_motion == "Drone Hover (Hình số 8)": + zoom = zbuf(0.01) + dx = (w * 0.01 * amp) * gimbal + dy = (h * 0.005 * amp) * math.sin(rad) + elif chosen_motion == "Handheld (Camera cầm tay)": + zoom = zbuf(0.003) + dx = (w * 0.003 * amp) * gimbal + (w * 0.001 * amp) * math.sin(p * 20 * math.pi) + dy = (h * 0.003 * amp) * math.sin(rad) + (h * 0.001 * amp) * gimbal + elif chosen_motion == "Pendulum Sway (Quả lắc)": + zoom = zbuf(0.01) + ang = (0.8 * amp) * math.sin(rad) + dx = (w * 0.008 * amp) * gimbal + dy = (h * 0.005 * amp) * gimbal + elif chosen_motion == "Space Float (Phi trọng lực)": + zoom = zbuf(0.01) + dx = (w * 0.01 * amp) * gimbal + dy = (h * 0.008 * amp) * math.sin(rad) + + M = cv2.getRotationMatrix2D((w//2, h//2), ang, zoom) + M[0,2] += dx; M[1,2] += dy + return cv2.warpAffine(crop_base, M, (w, h), borderMode=cv2.BORDER_REFLECT) + + def render_ffmpeg_zoompan(self, image_path, out_file, width, height, duration_sec, fps, ovl_path, ovl_mode, opacity, outro_effect, outro_dur, chosen_motion, cfg, task_name): + """ + \u26a1 FFmpeg Fast Mode: 1:1 conversion of apply_motion formulas to FFmpeg zoompan/rotate filters. + 10-20x faster than OpenCV. Uses exact same sin/gimbal math as apply_motion. + Images are pre-scaled 1.3x to give zoom headroom without border artifacts. + outro_effect support: Fade Out via FFmpeg fade filter. Others fallback to no-outro. + """ + self.log(f"[{task_name}] \u26a1 [FAST] FFmpeg Zoompan ({chosen_motion}): {duration_sec:.1f}s") + # ⏱ RENDER SPEED MONITOR: Bắt đầu segment + rs = self.render_stats + rs['seg_start'] = time.monotonic() + rs['seg_video_dur'] = duration_sec + rs['active'] = True + + AMP = cfg.get("motion_intensity", 1.0) + T = max(0.01, duration_sec) + total_frames = int(duration_sec * fps) + D = total_frames # zoompan d= param + W, H = width, height + ffmpeg = cfg['ffmpeg'] + # === ENCODER + SCALE AUTO-TUNE: GPU vs CPU thuần === + hw_encoder = cfg.get("video_encoder", "libx264") + has_gpu = hw_encoder in ("h264_nvenc", "h264_amf", "h264_qsv") + + if has_gpu: + # ULTRA FAST: Scale 2x (vs 3x cũ) → giảm 55% pixel zoompan phải tính + # Intermediate file chỉ cần đủ sắc nét, không cần cinema grade + SCALE = 2.0 + scale_flag = "lanczos" + if hw_encoder == "h264_nvenc": + # p2 (fast) thay vì p4 (medium) → 2-3x nhanh hơn encode + # Bỏ spatial-aq + rc-lookahead: chỉ dùng cho output cuối, file trung gian không cần + # g=999: ít I-frame → giảm overhead bitstream của file temp + enc_args = ['-c:v', hw_encoder, '-preset', 'p2', '-rc', 'constqp', '-qp', '16', + '-bf', '0', '-g', '999', '-pix_fmt', 'yuv420p'] + elif hw_encoder == "h264_amf": + enc_args = ['-c:v', hw_encoder, '-rc', 'cqp', '-qp_i', '16', '-qp_p', '16', + '-qp_b', '16', '-b_depth', '0', '-g', '999', '-pix_fmt', 'yuv420p'] + else: # QSV + enc_args = ['-c:v', hw_encoder, '-global_quality', '20', + '-b_strategy', '0', '-g', '999', '-pix_fmt', 'yuv420p'] + else: + # CPU: Scale 1.5x (vs 2x cũ) → giảm 43% pixel + SCALE = 1.5 + scale_flag = "bilinear" # bilinear nhanh gấp 3x bicubic, chất lượng đủ cho intermediate + # ultrafast: 3-4x nhanh hơn fast, chất lượng đủ cho file trung gian + enc_args = ['-c:v', 'libx264', '-preset', 'ultrafast', '-crf', '18', + '-threads', '0', '-g', '999', '-tune', 'zerolatency', '-pix_fmt', 'yuv420p'] + + SW, SH = int(W * SCALE), int(H * SCALE) + ZOOM_W, ZOOM_H = int(W * SCALE), int(H * SCALE) + + # ---- Per-effect zoompan expressions ---- + # zoompan: dùng `on` (output frame number, 1-based) KHÔNG PHẢI `t` + PI = "3.14159265358979" + gimbal = f"((1-cos(2*{PI}*on/{D}))/2)" + rad = f"(2*{PI}*on/{D})" + rad_t = f"(2*{PI}*t/{duration_sec})" # rotate filter dùng t (giây) + + # Để OpenCV x/y không bị FFmpeg zoompan gò mép (clamp) chặn lại (gây cảm giác bị tĩnh khựng), + # Chúng ta dùng "max_x" và "max_y" chuẩn theo từng frame zoom để Crop Window luôn quét TRỌN VẸN dải mép mà không lỗi! + max_x = "(iw-iw/zoom)" + max_y = "(ih-ih/zoom)" + cx = f"({max_x}/2)" + cy = f"({max_y}/2)" + + rot_expr = None + + if chosen_motion in ("Zoom In", "Deep Breathe (Focus)"): + z_expr = f"1+(0.015*{AMP})*{gimbal}" + x_expr, y_expr = cx, cy + elif chosen_motion == "Zoom Out": + z_expr = f"1+(0.015*{AMP})*(1-{gimbal})" + x_expr, y_expr = cx, cy + elif "Pan Left" in chosen_motion: + z_expr = f"1+(0.01*{AMP})" + x_expr = f"{max_x}*(1-{gimbal})" + y_expr = cy + elif "Pan Right" in chosen_motion: + z_expr = f"1+(0.01*{AMP})" + x_expr = f"{max_x}*{gimbal}" + y_expr = cy + elif chosen_motion == "Slow Pan Diagonal": + z_expr = f"1+(0.01*{AMP})" + x_expr = f"{max_x}*(1-{gimbal})" + y_expr = f"{max_y}*(1-{gimbal})" + elif chosen_motion == "Bồng Bềnh (Parallax)": + z_expr = f"1.015+(0.013*{AMP})*{gimbal}" + x_expr, y_expr = cx, cy + rot_expr = f"(0.325*{AMP}*({PI}/180))*sin({rad_t})" + elif chosen_motion == "Bồng Bềnh Nhẹ (Romantic)": + z_expr = f"1.015+(0.004*{AMP})*{gimbal}" + x_expr, y_expr = cx, cy + rot_expr = f"(0.1*{AMP}*({PI}/180))*sin({rad_t})" + elif chosen_motion == "Ken Burns (Zoom Pan)": + z_expr = f"1.02+(0.015*{AMP})*{gimbal}" + x_expr = f"{max_x}*(1-{gimbal})" + y_expr = f"{max_y}*(1-{gimbal})" + elif chosen_motion == "Drone Hover (Hình số 8)": + z_expr = f"1+(0.01*{AMP})" + x_expr = f"{max_x}*{gimbal}" + y_expr = f"{cy} + {max_y}/2*sin({rad})" # Dò quanh tâm cy để vẽ số 8 hoàn hảo không chạm vách + elif chosen_motion == "Handheld (Camera cầm tay)": + z_expr = f"1+(0.003*{AMP})" # zoom nhỏ để nhường room cho lắc + # Rung lắc vi mô: Lấy tâm cx, cy. Phóng gimbal biên độ nhỏ và sóng sin nhanh + x_expr = f"{cx} + ({max_x}/2)*({gimbal}-0.5) + ({max_x}/4)*sin(20*{PI}*on/{D})" + y_expr = f"{cy} + ({max_y}/2)*sin({rad}) + ({max_y}/4)*({gimbal}-0.5)" + elif chosen_motion == "Pendulum Sway (Quả lắc)": + z_expr = f"1+(0.01*{AMP})" + x_expr = f"{max_x}*{gimbal}" + y_expr = f"{cy} + {max_y}/2*({gimbal}-0.5)" + rot_expr = f"(0.8*{AMP}*({PI}/180))*sin({rad_t})" + elif chosen_motion == "Space Float (Phi trọng lực)": + z_expr = f"1+(0.01*{AMP})" + x_expr = f"{max_x}*{gimbal}" + y_expr = f"{cy} + {max_y}/2*sin({rad})" + else: # Static + z_expr = "1" + x_expr, y_expr = f"{SW}/2-{ZOOM_W}/2", f"{SH}/2-{ZOOM_H}/2" + + safe_x = f"max(0,min(iw-iw/zoom,{x_expr}))" + safe_y = f"max(0,min(ih-ih/zoom,{y_expr}))" + + # FIX SMOOTHNESS: Xoay ảnh (Rotate) trước khi Nén DOWNSCALE để viền chữ và pixel siêu mịn! + scale_up_filter = f"scale={SW}:{SH}:flags={scale_flag}" + zoompan_filter = f"zoompan=z='{z_expr}':x='{safe_x}':y='{safe_y}':d={D}:s={ZOOM_W}x{ZOOM_H}:fps={fps}" + + vf_parts = [scale_up_filter, zoompan_filter] + if rot_expr: + # Xoay bilinear ngay trên khung hình 4K/8K, không bị vỡ hạt răng cưa + vf_parts.append(f"rotate='{rot_expr}':ow={ZOOM_W}:oh={ZOOM_H}:c=black@0:bilinear=1") + + scale_down_filter = f"scale={W}:{H}:flags={scale_flag}+accurate_rnd" + vf_parts.append(scale_down_filter) + if outro_effect == "Fade Out (Tự nhiên)": + fade_start = max(0.0, duration_sec - outro_dur) + vf_parts.append(f"fade=t=out:st={fade_start:.3f}:d={outro_dur:.3f}") + + # Overlay composition + filter_complex = None + map_args = ['-map', '0:v'] + extra_inputs = [] + if ovl_path: + blend_mode = ovl_mode.lower() + ovl_prep = f"[0:v]{''.join(f+',' for f in vf_parts[:-1])}{vf_parts[-1]}[base]; [1:v]scale={W}:{H}:force_original_aspect_ratio=decrease,pad={W}:{H}:(ow-iw)/2:(oh-ih)/2[ovl_sized];" + if "chroma" in blend_mode or "green" in ovl_mode.lower(): + fc = f"{ovl_prep}[ovl_sized]chromakey=0x00FF00:0.25:0.0,despill=green,colorchannelmixer=aa={opacity}[ovl_clean];[base][ovl_clean]overlay=0:0:shortest=1[v]" + elif blend_mode in ["screen", "multiply", "overlay", "softlight"]: + if blend_mode == "screen": blend_mode = "addition" # Tối ưu thuật toán blend: Addition nhẹ hơn Screen rất nhiều + fc = f"{ovl_prep}[ovl_sized]colorchannelmixer=aa={opacity}[ovl_ready];[base][ovl_ready]blend=all_mode={blend_mode}:shortest=1[v]" + else: + fc = f"{ovl_prep}[ovl_sized]colorchannelmixer=aa={opacity}[ovl_clean];[base][ovl_clean]overlay=0:0:shortest=1[v]" + filter_complex = fc + extra_inputs = ['-stream_loop', '-1', '-i', ovl_path] + map_args = ['-map', '[v]'] + + # === ENCODER OPTIMIZATION (đã tính ở trên theo GPU/CPU) === + cmd = [ffmpeg, '-y', '-hide_banner', '-loglevel', 'error'] + + if has_gpu: + cmd.extend(['-hwaccel', 'auto']) + + cmd.extend([ + '-threads', '2', # Giới hạn 2 luồng để không giết CPU khi có 30-72 tiến trình FFmpeg chạy song song + '-thread_queue_size', '4096', # Tăng buffer 4x → GPU không bị đói frame + '-loop', '1', '-framerate', str(fps), '-i', image_path]) + + cmd.extend(extra_inputs) + if filter_complex: + cmd.extend(['-filter_complex', filter_complex]) + else: + cmd.extend(['-vf', ','.join(vf_parts)]) + cmd.extend(map_args) + cmd.extend(['-t', str(duration_sec)]) + cmd.extend(enc_args) + cmd.extend(['-an', out_file]) + self._log_and_run_subprocess(cmd, task_name) + + # ⏱ RENDER SPEED MONITOR: Cập nhật sau khi xong segment + seg_wall = time.monotonic() - rs['seg_start'] + if seg_wall > 0.1: + rs['total_video_done'] += duration_sec + rs['total_wall_done'] += seg_wall + rs['segment_count'] += 1 + if rs['total_wall_done'] > 0: + rs['rtf_avg'] = rs['total_video_done'] / rs['total_wall_done'] + + def render_opencv_parallax(self, image_path, out_file, width, height, duration_sec, fps, ovl_path, ovl_mode, opacity, outro_effect, outro_dur, chosen_motion, cfg, task_name): + self.log(f"[{task_name}] Rendering OpenCV Cinematic Slide ({chosen_motion}): {duration_sec:.1f}s") + + # ⏱ RENDER SPEED MONITOR: Bắt đầu segment + rs = self.render_stats + rs['seg_start'] = time.monotonic() + rs['seg_video_dur'] = duration_sec + rs['active'] = True + + img_raw = self.cv2_imread(image_path) + if img_raw is None: + raise Exception(f"Cannot read image for OpenCV: {image_path}") + img_base = self.prep_image_for_res(img_raw, width, height) + + total_frames = int(duration_sec * fps) + outro_frames = int(outro_dur * fps) + outro_start_idx = total_frames - outro_frames + + # Easing Functions local + def easeInCubic(x): return x * x * x + + cmd = [cfg['ffmpeg'], '-y', '-hide_banner', '-loglevel', 'error'] + cmd.extend(['-f', 'rawvideo', '-vcodec', 'rawvideo', '-s', f'{width}x{height}', '-pix_fmt', 'bgr24', '-r', str(fps), '-i', '-']) + + if ovl_path: + if has_gpu: cmd.extend(['-hwaccel', 'auto']) + cmd.extend(['-stream_loop', '-1', '-thread_queue_size', '1024', '-i', ovl_path]) + blend_mode = ovl_mode.lower() + ovl_prep = f"[1:v]scale={width}:{height}:force_original_aspect_ratio=decrease,pad={width}:{height}:(ow-iw)/2:(oh-ih)/2[ovl_sized];" + if "chroma" in blend_mode or "green" in ovl_mode.lower(): + ovl_chain = f"[ovl_sized]chromakey=0x00FF00:0.25:0.0,despill=green,colorchannelmixer=aa={opacity}[ovl_clean];" + merge_cmd = "[0:v][ovl_clean]overlay=0:0:shortest=1[outv]" + elif blend_mode in ["screen", "multiply", "overlay", "softlight"]: + ovl_chain = f"[ovl_sized]colorchannelmixer=aa={opacity}[ovl_ready];" + merge_cmd = f"[0:v][ovl_ready]blend=all_mode={blend_mode}:shortest=1[outv]" + else: + ovl_chain = f"[ovl_sized]colorchannelmixer=aa={opacity}[ovl_clean];" + merge_cmd = "[0:v][ovl_clean]overlay=0:0:shortest=1[outv]" + cmd.extend(['-filter_complex', f"{ovl_prep}{ovl_chain}{merge_cmd}", '-map', '[outv]']) + + # Kích hoạt Card Rời (NVIDIA/AMD/Intel) cho Cinematic Slides + enc = cfg.get("video_encoder", "libx264") + if enc in ["h264_nvenc", "h264_amf", "h264_qsv"]: + if "nvenc" in enc: hw_opts = ["-preset", "p4", "-rc", "constqp", "-qp", "14", "-bf", "0", "-spatial-aq", "1"] + elif "amf" in enc: hw_opts = ["-rc", "cqp", "-qp_i", "14", "-qp_p", "14", "-qp_b", "14", "-b_depth", "0"] + else: hw_opts = ["-global_quality", "14", "-b_strategy", "0"] + cmd.extend(['-c:v', enc] + hw_opts + ['-g', '1', '-pix_fmt', 'yuv420p', out_file]) + else: + cmd.extend(['-c:v', 'libx264', '-preset', 'fast', '-crf', '14', '-g', '1', '-pix_fmt', 'yuv420p', out_file]) + + proc = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE, bufsize=10**7, creationflags=subprocess.CREATE_NO_WINDOW) + + # [FEATURE] Đảm bảo Loop A->B->A mượt mà tuyệt đối cho Standalone Image (hết video là hết đúng 1 chu kỳ) + target_cycle = cfg.get("vis_cycle", 10.0) + num_cycles = max(1, round(duration_sec / target_cycle)) if duration_sec > 0 else 1 + actual_cycle_frames = max(1, int(total_frames / num_cycles)) + + for i in range(total_frames): + p_base = (i % actual_cycle_frames) / actual_cycle_frames + base_frame = self.apply_motion(img_base, p_base, width, height, chosen_motion, cfg) + + if outro_effect != "None" and outro_effect != "Random" and i >= outro_start_idx: + p_out = (i - outro_start_idx) / outro_frames # 0.0 to 1.0 + zoom = 1.0; angle = 0.0; dx = 0; dy = 0; blur_k = 0 + + if outro_effect == "Vortex Suck Out": + angle = 360 * easeInCubic(p_out) + zoom = max(0.01, 1.0 - easeInCubic(p_out)) + elif outro_effect == "TV Turn Off": + zoom_y = max(0.01, 1.0 - easeInCubic(p_out)) + base_frame = cv2.resize(base_frame, (width, int(height*zoom_y))) + f_new = np.zeros((height, width, 3), dtype=np.uint8) + y_off = (height - int(height*zoom_y)) // 2 + f_new[y_off:y_off+int(height*zoom_y), :] = base_frame + base_frame = f_new + elif outro_effect == "Elastic Drop": + dy = float(height) * p_out * p_out + elif outro_effect == "Whip Pan Out Left": + dx = -width * easeInCubic(p_out) + blur_k = int(p_out*20)*2+1 + elif outro_effect == "Whip Pan Out Right": + dx = width * easeInCubic(p_out) + blur_k = int(p_out*20)*2+1 + elif outro_effect == "Spin Shrink Out": + angle = -180 * p_out + zoom = max(0.01, 1.0 - 0.9 * p_out) + elif outro_effect == "Slide Fall Down": + dy = height * easeInCubic(p_out) + + if outro_effect != "TV Turn Off": + M = cv2.getRotationMatrix2D((width/2, height/2), angle, zoom) + M[0,2] += dx; M[1,2] += dy + base_frame = cv2.warpAffine(base_frame, M, (width, height), borderMode=cv2.BORDER_CONSTANT, borderValue=(0,0,0)) + if blur_k > 1: base_frame = cv2.GaussianBlur(base_frame, (blur_k, blur_k), 0) + if outro_effect == "Fade Out (Tự nhiên)": + base_frame = cv2.convertScaleAbs(base_frame, alpha=(1.0 - p_out), beta=0) + + try: proc.stdin.write(base_frame.tobytes()) + except: break + # FIX DEADLOCK: Dùng communicate() để rút cạn ống xả stderr + try: proc.stdin.close() + except: pass + _, _ = proc.communicate() + + # ⏱ RENDER SPEED MONITOR: Cập nhật sau khi xong segment + seg_wall = time.monotonic() - rs['seg_start'] + if seg_wall > 0.1: + rs['total_video_done'] += duration_sec + rs['total_wall_done'] += seg_wall + rs['segment_count'] += 1 + if rs['total_wall_done'] > 0: + rs['rtf_avg'] = rs['total_video_done'] / rs['total_wall_done'] + + # --- HÀM MỚI: CHỈ RENDER BASE CYCLE, KHÔNG LẶP DÀI RA 2 TIẾNG TẠI ĐÂY --- + # V10: Hỗ trợ Camera Shake, Intro Animation, Motion riêng Mode 1/2 + def render_ffmpeg_visuals_short(self, mode, input_files, task, out_file, cfg): + task_name = task['name']; temp_dir = os.path.dirname(out_file) + w, h = cfg["target_w"], cfg["target_h"] + motion_cycle = cfg["vis_cycle"]; ovl_mode = cfg["vis_blend"]; opacity = cfg["vis_opacity"] + + # Motion type RIÊNG cho từng mode + if mode == 1 or task.get('_from_mode1_multi', False): + motion_type_raw = cfg.get("mode1_motion_type", "Random") + elif mode == 2: + motion_type_raw = cfg.get("mode2_motion_type", "Random") + else: + motion_type_raw = cfg["vis_motion_type"] + + # Chọn min/max giây ảnh theo nguồn gốc + if task.get('_from_mode1_multi', False): + slide_min = cfg.get("mode1_slide_dur_min", 5.0); slide_max = cfg.get("mode1_slide_dur_max", 8.0) + else: + slide_min = cfg["slide_dur_min"]; slide_max = cfg["slide_dur_max"] + if slide_max < slide_min: slide_max = slide_min + + # Phân nhóm Motion để chống Random ra 2 hiệu ứng cùng dòng (gây cảm giác không đổi) + motion_groups = { + "Zoom": ["Zoom In", "Zoom Out"], + "Pan": ["Pan Left->Right", "Pan Right->Left", "Slow Pan Diagonal"], + "Floating": ["Bồng Bềnh (Parallax)", "Bồng Bềnh Nhẹ (Romantic)", "Space Float (Phi trọng lực)"], + # Static được TÁCH KHỌi nhóm Random — chỉ chạy khi user chọn rõ ràng + "Cinematic": ["Ken Burns (Zoom Pan)", "Drone Hover (Hình số 8)", + "Handheld (Camera cầm tay)", "Pendulum Sway (Quả lắc)", "Deep Breathe (Focus)"] + } + # Khi Random: loại bỏ Static hoàn toàn khỏi pool — ưu tiên hiệu ứng có chuyển động + if motion_type_raw == "Random": + motion_options = [m for group in motion_groups.values() for m in group] # không có Static + else: + motion_options = [motion_type_raw] # giữ nguyên lựa chọn của user (kể cả Static) + hw_encoder = cfg.get("video_encoder", "libx264") + is_fast = cfg.get('fast_mode', False) + if hw_encoder in ["h264_nvenc", "h264_amf", "h264_qsv"]: + if "nvenc" in hw_encoder: + # fast_mode: p2 (fast) vs p5 (slow) → nhanh hơn 3x, file trung gian không cần quality cao + _preset = 'p2' if is_fast else 'p5' + common_enc_args = ['-c:v', hw_encoder, '-preset', _preset, '-rc', 'constqp', '-qp', '16', + '-bf', '0', '-g', '999', '-pix_fmt', 'yuv420p'] + elif "amf" in hw_encoder: + common_enc_args = ['-c:v', hw_encoder, '-rc', 'cqp', '-qp_i', '16', '-qp_p', '16', + '-qp_b', '16', '-b_depth', '0', '-g', '999', '-pix_fmt', 'yuv420p'] + else: + common_enc_args = ['-c:v', hw_encoder, '-global_quality', '20', + '-b_strategy', '0', '-g', '999', '-pix_fmt', 'yuv420p'] + else: + # ultrafast: 3-4x nhanh hơn fast khi fast_mode + _cpu_preset = 'ultrafast' if is_fast else 'fast' + common_enc_args = ['-c:v', 'libx264', '-preset', _cpu_preset, '-crf', '18', + '-g', '999', '-tune', 'zerolatency', '-pix_fmt', 'yuv420p'] + + outro_effect_raw = cfg.get("outro_effect_type", "None") + outro_effect = outro_effect_raw if outro_effect_raw != "Random" else random.choice(["Fade Out (Tự nhiên)", "Vortex Suck Out", "TV Turn Off", "Elastic Drop", "Whip Pan Out Left", "Whip Pan Out Right", "Spin Shrink Out", "Slide Fall Down"]) + outro_dur = cfg.get("outro_effect_duration", 2.0) + + # Toàn quyền chiếm đoạt xử lý hình ảnh tĩnh bằng OpenCV Rendering để áp dụng Gimbal chuẩn Hollywood + opencv_motions = [ + "Zoom In", "Zoom Out", "Pan Left->Right", "Pan Right->Left", + "Bồng Bềnh (Parallax)", "Bồng Bềnh Nhẹ (Romantic)", "Deep Breathe (Focus)", + "Slow Pan Diagonal", "Ken Burns (Zoom Pan)", "Drone Hover (Hình số 8)", + "Handheld (Camera cầm tay)", "Pendulum Sway (Quả lắc)", "Space Float (Phi trọng lực)", "Random" + ] + + # Overlay selection + + ovl_path = None + if cfg['overlay_path'] and os.path.exists(cfg['overlay_path']): + ovl_input = cfg['overlay_path'] + if os.path.isfile(ovl_input): ovl_path = ovl_input + elif os.path.isdir(ovl_input): + candidates = [os.path.join(ovl_input, f) for f in os.listdir(ovl_input) if f.lower().endswith(('.mp4', '.mov', '.avi', '.mkv'))] + if candidates: ovl_path = random.choice(candidates) + + if mode == 1: + source_path = input_files[0] + is_video_input = source_path.lower().endswith(('.mp4', '.mov', '.avi', '.mkv')) + chosen_motion = motion_type_raw if motion_type_raw != "Random" else random.choice(motion_options) + + # OPENCV ROUTE (Dùng OpenCV để render Motion siêu nét nếu trúng các hiệu ứng cinematic) + # Tuy nhiên Outro Effect KHÔNG áp dụng ở Mode 1 vì nó chạy 1 ảnh tới hết video + if chosen_motion in opencv_motions and not is_video_input: + if cfg.get('fast_mode', False): + self.render_ffmpeg_zoompan(source_path, out_file, w, h, motion_cycle, 30, ovl_path, ovl_mode, opacity, "None", 0, chosen_motion, cfg, task_name) + else: + self.render_opencv_parallax(source_path, out_file, w, h, motion_cycle, 30, ovl_path, ovl_mode, opacity, "None", 0, chosen_motion, cfg, task_name) + return + + # FFMPEG ROUTE (Fallback) + filter_c = generate_ffmpeg_filter_complex(chosen_motion, w, h, motion_cycle, 30, ovl_path, ovl_mode, opacity, motion_cycle, is_video_source=is_video_input) + cmd = [cfg["ffmpeg"], '-y', '-hide_banner', '-loglevel', 'error'] + if is_video_input: cmd.extend(['-i', source_path]) + else: cmd.extend(['-loop', '1', '-framerate', '30', '-i', source_path]) + if ovl_path: cmd.extend(['-stream_loop', '-1', '-i', ovl_path]) + cmd.extend(['-filter_complex', filter_c, '-map', '[v]', '-t', str(motion_cycle)]) + cmd.extend(common_enc_args); cmd.extend(['-an', out_file]) + self._log_and_run_subprocess(cmd, task_name) + return + + elif mode == 2: + if task.get('_from_mode1_multi', False): + base_cycle_sources = input_files # Mode 1 Multi: Dùng tất cả ảnh match được, giữ đúng thứ tự regex nếu có + else: + base_cycle_sources = random.sample(input_files, min(len(input_files), cfg["mode2_amount"])) + + # ===== CUSTOM LOG THEO YÊU CẦU NGƯỜI DÙNG TÌM BUG ===== + self.log(f"[{task_name}] 🔍 KỊCH BẢN TIME (Đa ảnh/Mode2): Min/Max UI Set = {slide_min:.1f}s -> {slide_max:.1f}s") + self.log(f"[{task_name}] 🔍 Dùng tổng cộng {len(base_cycle_sources)} ảnh để tạo Base:") + + segment_paths = [] + prev_motion = None + total_dur_plan = 0.0 + for idx, source_path in enumerate(base_cycle_sources): + seg_name = os.path.join(temp_dir, f"slide_{idx:03d}.mp4") + this_dur = random.uniform(slide_min, slide_max) + total_dur_plan += this_dur + + self.log(f" + Ảnh {idx+1}: {os.path.basename(source_path)} -> Nhận {this_dur:.1f}s") + + # Tránh trùng lặp CÙNG NHÓM HIỆU ỨNG (Ví dụ Pan xong lại Pan, Zoom xong lại Zoom) + if motion_type_raw != "Random": + chosen_motion = motion_type_raw + else: + valid_groups = [g for g in motion_groups.keys() if g != prev_motion] # Ở đây prev_motion lưu Tên Nhóm + if not valid_groups: valid_groups = list(motion_groups.keys()) + chosen_group = random.choice(valid_groups) + chosen_motion = random.choice(motion_groups[chosen_group]) + prev_motion = chosen_group + + # Chỉ áp dụng Outro OpenCV cho Slide CUỐI CÙNG của chuỗi, các Slide giữa phải để nguyên vẹn Base Motion để FFmpeg Xfade "bắt cầu" mượt mà + is_last_slide = (idx == len(base_cycle_sources) - 1) + slide_outro = outro_effect if is_last_slide else "None" + + # OPENCV ROUTE + if chosen_motion in opencv_motions or slide_outro != "None": + if cfg.get('fast_mode', False): + self.render_ffmpeg_zoompan(source_path, seg_name, w, h, this_dur, 30, ovl_path, ovl_mode, opacity, slide_outro, outro_dur, chosen_motion, cfg, task_name) + else: + self.render_opencv_parallax(source_path, seg_name, w, h, this_dur, 30, ovl_path, ovl_mode, opacity, slide_outro, outro_dur, chosen_motion, cfg, task_name) + else: + # FFmpeg Route + filter_c = generate_ffmpeg_filter_complex(chosen_motion, w, h, this_dur, 30, ovl_path, ovl_mode, opacity, motion_cycle, is_video_source=False) + cmd = [cfg["ffmpeg"], '-y', '-hide_banner', '-loglevel', 'error', '-loop', '1', '-framerate', '30', '-i', source_path] + if ovl_path: + has_gpu = any(x in cfg.get("video_encoder", "libx264") for x in ["nvenc", "amf", "qsv"]) + if has_gpu: cmd.extend(['-hwaccel', 'auto']) + cmd.extend(['-stream_loop', '-1', '-thread_queue_size', '1024', '-i', ovl_path]) + cmd.extend(['-filter_complex', filter_c, '-map', '[v]', '-t', str(this_dur)]) + cmd.extend(common_enc_args); cmd.extend(['-an', seg_name]) + self._log_and_run_subprocess(cmd, task_name) + segment_paths.append(seg_name) + + if len(segment_paths) > 1: self.xfade_concat_videos(segment_paths, out_file, task_name, cfg) + elif len(segment_paths) == 1: shutil.copy2(segment_paths[0], out_file) + for p in segment_paths: + if os.path.exists(p): os.remove(p) + self.log(f"[{task_name}] 🔍 Tổng số giây Base sau ghép mảng: ~{total_dur_plan:.1f}s") + return + + elif mode == 3: + base_cycle_sources = random.sample(input_files, min(len(input_files), cfg["mode3_amount"])) + segment_paths = [] + is_static_mode = "Static" in cfg["mode3_type"] + # Mode 3 giữ pool motion gốc (không có Camera Shake cho video) + mode3_motion_options = ["Zoom In", "Zoom Out", "Pan Left->Right", "Pan Right->Left"] + + for idx, source_path in enumerate(base_cycle_sources): + seg_name = os.path.join(temp_dir, f"vid_{idx:03d}.mp4") + vid_dur = self.get_media_duration(cfg["ffprobe"], source_path) or 10.0 + cmd = [cfg["ffmpeg"], '-y', '-hide_banner', '-loglevel', 'error', '-i', source_path] + + if is_static_mode: chosen_motion = "Static" + else: + chosen_motion = motion_type_raw if motion_type_raw != "Random" else random.choice(mode3_motion_options) + if chosen_motion == "Static": chosen_motion = "Zoom In" + + filter_c = generate_ffmpeg_filter_complex(chosen_motion, w, h, vid_dur, 30, ovl_path, ovl_mode, opacity, motion_cycle, is_video_source=True) + + if ovl_path: + has_gpu = any(x in cfg.get("video_encoder", "libx264") for x in ["nvenc", "amf", "qsv"]) + if has_gpu: cmd.extend(['-hwaccel', 'auto']) + cmd.extend(['-stream_loop', '-1', '-thread_queue_size', '1024', '-i', ovl_path]) + cmd.extend(['-filter_complex', filter_c, '-map', '[v]']) + cmd.extend(common_enc_args) + cmd.extend(['-an', seg_name]) + try: + self._log_and_run_subprocess(cmd, task_name) + segment_paths.append(seg_name) + except Exception as e: continue + + if not segment_paths: raise Exception("No video segments could be created (Mode 3)") + if len(segment_paths) > 1: self.xfade_concat_videos(segment_paths, out_file, task_name, cfg) + elif len(segment_paths) == 1: shutil.copy2(segment_paths[0], out_file) + for p in segment_paths: + if os.path.exists(p): os.remove(p) + return + + def _render_image_with_intro(self, image_path, out_path, w, h, total_dur, fps, + ovl_path, ovl_mode, opacity, motion_cycle, + motion_type, intro_effect, intro_dur, cfg, task_name): + """ Render cinematic intro bằng OpenCV Pipeline mượt như CapCut """ + import math + self.log(f"[{task_name}] Rendering Cinematic Intro OpenCV: {intro_effect}") + + img_raw = self.cv2_imread(image_path) + if img_raw is None: raise Exception(f"Cannot read image for Intro OpenCV: {image_path}") + img_base = self.prep_image_for_res(img_raw, w, h) + + total_frames = int(intro_dur * fps) + + # Easing functions + def easeOutCubic(x): return 1 - pow(1 - x, 3) + def easeOutElastic(x): + if x == 0: return 0 + if x >= 1: return 1 + return pow(2, -10 * x) * math.sin((x * 10 - 0.75) * ((2 * math.pi) / 3)) + 1 + def easeOutBounce(x): + n1, d1 = 7.5625, 2.75 + if x < 1 / d1: return n1 * x * x + elif x < 2 / d1: x -= 1.5 / d1; return n1 * x * x + 0.75 + elif x < 2.5 / d1: x -= 2.25 / d1; return n1 * x * x + 0.9375 + else: x -= 2.625 / d1; return n1 * x * x + 0.984375 + + def easeInOutExpo(x): + if x == 0: return 0 + if x == 1: return 1 + if x < 0.5: return pow(2, 20 * x - 10) / 2 + return (2 - pow(2, -20 * x + 10)) / 2 + + cmd = [cfg['ffmpeg'], '-y', '-hide_banner', '-loglevel', 'error'] + cmd.extend(['-f', 'rawvideo', '-vcodec', 'rawvideo', '-s', f'{w}x{h}', '-pix_fmt', 'bgr24', '-r', str(fps), '-i', '-']) + cmd.extend(['-c:v', 'libx264', '-preset', 'fast', '-crf', '14', '-pix_fmt', 'yuv420p', '-t', str(intro_dur), out_path]) + + proc = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE, bufsize=10**7, creationflags=subprocess.CREATE_NO_WINDOW) + + for i in range(total_frames): + p = i / total_frames + frame = img_base + zoom = 1.0; angle = 0.0; dx = 0; dy = 0 + blur_k = 0 + damp = max(0, 1-p) + + # --- Zooms --- + if intro_effect == "Hyper Zoom In": zoom = 2.5 - 1.5 * easeOutCubic(p) + elif intro_effect == "Hyper Zoom Out": zoom = 0.4 + 0.6 * easeOutCubic(p) + elif intro_effect == "Elastic Pop In": zoom = 0.2 + 0.8 * easeOutElastic(p) + elif intro_effect == "Elastic Pop Out": zoom = 2.0 - 1.0 * easeOutElastic(p) + elif intro_effect == "Snappy Zoom In": zoom = 0.5 + 0.5 * easeInOutExpo(p) + elif intro_effect == "Snappy Zoom Out": zoom = 1.5 - 0.5 * easeInOutExpo(p) + elif intro_effect == "Cinematic Dolly In": zoom = 1.0 + 0.3 * p + elif intro_effect == "Cinematic Dolly Out": zoom = 1.3 - 0.3 * p + elif intro_effect == "Deep Focus Pull": zoom = 1.2 - 0.2 * easeInOutExpo(p); blur_k = int(damp*15)*2+1 + + # --- Spins --- + elif intro_effect == "Perspective Spin 180": angle = 180 * damp; zoom = 0.3 + 0.7 * easeOutCubic(p) + elif intro_effect == "Perspective Spin 360": angle = 360 * damp; zoom = 0.1 + 0.9 * easeOutCubic(p) + elif intro_effect == "Spiral In": angle = 90 * damp; zoom = 2.0 - 1.0 * easeOutCubic(p) + elif intro_effect == "Spiral Out": angle = -90 * damp; zoom = 0.5 + 0.5 * easeOutCubic(p) + elif intro_effect == "Vertigo Spin": angle = 45 * p; zoom = 1.0 + 0.5 * p + elif intro_effect == "Inception Tilt": angle = 15 * damp; zoom = 1.2 - 0.2 * p + elif intro_effect == "Flashback Swirl": angle = 360 * damp; zoom = 0.2 + 0.8 * easeOutCubic(p); blur_k = int(damp*20)*2+1 + elif intro_effect == "Vortex Suck": angle = -360 * (1 - easeInOutExpo(p)); zoom = 3.0 - 2.0 * easeInOutExpo(p) + + # --- Slides & Whip Pans --- + elif intro_effect == "Whip Pan Left": dx = w * damp; blur_k = int(damp*20)*2+1 + elif intro_effect == "Whip Pan Right": dx = -w * damp; blur_k = int(damp*20)*2+1 + elif intro_effect == "Whip Pan Up": dy = h * damp; blur_k = int(damp*20)*2+1 + elif intro_effect == "Whip Pan Down": dy = -h * damp; blur_k = int(damp*20)*2+1 + + elif intro_effect == "Slide Swing Left": dx = w - w * easeOutElastic(p) + elif intro_effect == "Slide Swing Right": dx = -w + w * easeOutElastic(p) + elif intro_effect == "Slide Swing Up": dy = h - h * easeOutElastic(p) + elif intro_effect == "Slide Swing Down": dy = -h + h * easeOutElastic(p) + + # --- Bounces --- + elif intro_effect == "Bounce Drop In" or intro_effect == "Bounce Fall": dy = -h + h * easeOutBounce(p) + elif intro_effect == "Bounce Drop Out" or intro_effect == "Bounce Rise": dy = h - h * easeOutBounce(p) + elif intro_effect == "Elevator Drop": dy = -h + h * easeOutCubic(p); zoom = 1.1 - 0.1*(1-easeOutBounce(p)) + elif intro_effect == "Rocket Launch": dy = h - h * easeOutCubic(p); zoom = 0.8 + 0.2*p + + # --- Drama Action --- + elif intro_effect == "Action Landing": + if p < 0.3: dy = -h + h * (p/0.3); blur_k = 15 + else: + sp = (p-0.3)/0.7; damp2 = max(0, 1-sp) + dx = 30 * math.sin(sp*40) * damp2; dy = 30 * math.cos(sp*45) * damp2; zoom = 1.1 + elif intro_effect == "Matrix Dodge": zoom = 1.0 + 0.3 * damp; dx = -w/4 * math.sin(p * math.pi); angle = -15 * math.sin(p * math.pi) + elif intro_effect == "Cyberpunk Crash": + dx = 40 * math.sin(p*50) * damp; dy = 40 * math.cos(p*37) * damp; zoom = 1.2 + if math.sin(p*60) > 0.8: dx += 50 + elif intro_effect == "Jitter Shake": dx = 15 * math.sin(p*80) * damp; dy = 15 * math.cos(p*65) * damp; zoom = 1.05 + elif intro_effect == "Earthquake": dx = 25 * math.sin(p*40) * damp; dy = 25 * math.cos(p*30) * damp; zoom = 1.1 + elif intro_effect == "Pendulum Swing": dx = w/4 * math.sin(p*20) * damp; zoom = 1.05 + elif intro_effect == "Sneak Peek": + if p < 0.3: dy = h - h * easeOutCubic(p/0.3) * 0.2 + elif p < 0.5: dy = h * 0.8 + else: dy = h * 0.8 * (1 - easeOutCubic((p-0.5)/0.5)) + + # --- Pulses --- + elif intro_effect == "Heartbeat Cinematic": zoom = 1.0 + 0.15 * abs(math.sin(p * math.pi * 3)) * damp + elif intro_effect == "Pulse Double": zoom = 1.0 + 0.2 * abs(math.sin(p * math.pi * 2)) * damp + elif intro_effect == "Heart Attack": zoom = 1.0 + 0.1 * abs(math.sin(p * math.pi * 10)) * damp + + # --- Blurs --- + elif intro_effect == "Blur Reveal": blur_k = int(damp*30)*2+1 + elif intro_effect == "Zoom Blur Reveal": zoom = 1.5 - 0.5 * easeOutCubic(p); blur_k = int(damp*30)*2+1 + elif intro_effect == "Spin Blur Reveal": angle = 90*damp; blur_k = int(damp*30)*2+1 + + else: zoom = 1.05 - 0.05 * easeOutCubic(p) # Default fallback + + M = cv2.getRotationMatrix2D((w/2, h/2), angle, zoom) + M[0,2] += dx; M[1,2] += dy + render_f = cv2.warpAffine(img_base, M, (w, h), borderMode=cv2.BORDER_REFLECT) + + if blur_k > 1: + render_f = cv2.GaussianBlur(render_f, (blur_k, blur_k), 0) + + try: proc.stdin.write(render_f.tobytes()) + except: break + + # FIX DEADLOCK: Dùng communicate() để rút cạn ống xả stderr + try: proc.stdin.close() + except: pass + _, _ = proc.communicate() + + def get_media_duration(self, ffprobe_exe, file_path): + if not file_path or not os.path.exists(file_path): return 0 + try: + cmd = [ffprobe_exe, "-v", "quiet", "-print_format", "json", "-show_entries", "format=duration", file_path] + result = subprocess.run(cmd, capture_output=True, text=True, creationflags=subprocess.CREATE_NO_WINDOW) + data = json.loads(result.stdout) + if 'format' in data and 'duration' in data['format']: return float(data['format']['duration']) + except: pass + return 0 + + def _is_valid_existing_output(self, file_path, target_w, target_h, ffprobe_exe, task_name): + """Trình Sát Hạch file cũ: Chỉ kiểm tra tồn tại và dung lượng cơ bản (Tắt BPP theo yêu cầu User).""" + if not os.path.exists(file_path): return False + if os.path.getsize(file_path) < 5 * 1024 * 1024: return False # < 5MB = file rỗng hoặc lỗi + dur = self.get_media_duration(ffprobe_exe, file_path) + if dur <= 10: return False + + # ĐÃ BỎ KIỂM TRA PHÌNH SIZE (BPP) VÌ YÊU CẦU: "Đã có trong folder thì không đụng vào" + self.log(f"[{task_name}] ✅ File output đã tồn tại và hợp lệ (Tắt check phình size). Bỏ qua!") + return True # File đạt chuẩn cơ bản -> Skip! + + # --- SIÊU HÀM ONE-PASS MUX --- + # Vắt kiệt sức mạnh CPU/GPU vào đúng 1 lệnh FFmpeg duy nhất + # V10: Hỗ trợ Segmented Overlay (mỗi đoạn 1 overlay khác nhau) + def run_super_fast_one_pass_mux(self, vis_base_short, aud, ass, out, bitrate, cfg, task_name, t_id, evasion_params, audio_dur, logo_folder=None, is_retry=False, intro_clip=None): + if not os.path.exists(vis_base_short): raise Exception("Mux Failed: Base visual is missing.") + + # --- SMART BPP BITRATE ENGINE (Thay thế hardcode YouTube maxrate) --- + target_h = cfg.get('target_h', 720) + target_w = cfg.get('target_w', 1280) + is_live = cfg.get("livestream_mode", False) + use_target_size = cfg.get("enable_target_size", False) or is_live + + # CRF theo độ phân giải (chất lượng nền) + if target_h >= 2160: yt_crf = "18" + elif target_h >= 1440: yt_crf = "19" + elif target_h >= 1080: yt_crf = "20" + else: yt_crf = "22" + + # BPP (Bits-Per-Pixel) Guard — chống mờ và chống phình file + fps = cfg.get('target_fps', 30) + pixels_per_sec = target_w * target_h * fps + min_kbps = int(pixels_per_sec * 0.045 / 1000) # BPP 0.045: ngưỡng đủ net + max_kbps = int(pixels_per_sec * 0.10 / 1000) # BPP 0.10: ngưỡng không dư thừa + + final_bitrate = max(min_kbps, min(bitrate, max_kbps)) # bitrate từ caller, được clamp + if final_bitrate != bitrate: + self.log(f"[{task_name}] 🎯 BPP clamp: {bitrate}k → {final_bitrate}k (range {min_kbps}k–{max_kbps}k)") + + br_str = f"{final_bitrate}k" + max_br_str = f"{int(final_bitrate * 1.5)}k" + buf_str = f"{int(final_bitrate * 2)}k" + yt_maxrate = max_br_str + yt_buf = buf_str + + video_codec = "libx264" if is_retry else cfg.get("video_encoder", "libx264") + cmd = [cfg["ffmpeg"], '-y', '-hide_banner', '-loglevel', 'error'] + + # Quay về bản chất Stream Loop kinh điển của FFmpeg để chống giật đen + # Dùng flag cắm móc khóa cẩn thận bằng +genpts để tránh lệch frame container + has_gpu = any(x in cfg.get("video_encoder", "libx264") for x in ["nvenc", "amf", "qsv"]) + if has_gpu: cmd.extend(['-hwaccel', 'auto']) + cmd.extend(['-stream_loop', '-1', '-thread_queue_size', '1024', '-fflags', '+genpts', '-i', vis_base_short]) + + # 2. ĐẦU VÀO AUDIO GỐC (Trích thẳng từ mp4 hoặc đọc mp3/wav) + cmd.extend(['-thread_queue_size', '1024', '-i', aud]) + + input_count = 2; logo_idx = -1; chosen_logo_path = None + overlay_segments = [] # Segmented overlay data + intro_clip_idx = -1 # Index của intro clip input + + # 3. ĐẦU VÀO INTRO CLIP (Chỉ hiển thị 1 lần duy nhất ở đầu video) + if intro_clip and os.path.exists(intro_clip): + if has_gpu: cmd.extend(['-hwaccel', 'auto']) + cmd.extend(['-thread_queue_size', '1024', '-i', intro_clip]) + intro_clip_idx = input_count + input_count += 1 + self.log(f"[{task_name}] [INTRO] Intro clip sẽ overlay lên {cfg.get('intro_effect_duration', 3.0)}s đầu video") + + # 3. ĐẦU VÀO BGM + bgm = cfg["bg_music_path"]; + if bgm and os.path.exists(bgm): + cmd.extend(['-stream_loop', '-1', '-i', bgm]) + input_count += 1 + else: bgm = None + + # 4. ĐẦU VÀO LOGO + if logo_folder and os.path.isdir(logo_folder): + logo_files =[os.path.join(logo_folder, f) for f in os.listdir(logo_folder) if f.lower().endswith(('.png', '.jpg', '.jpeg'))] + if logo_files: + chosen_logo_path = random.choice(logo_files) + cmd.extend(['-i', chosen_logo_path]) + logo_idx = input_count + input_count += 1 + + # 5. ĐẦU VÀO OVERLAY PHÂN ĐOẠN (Feature 1 - Tối ưu chống sập RAM bằng Concat Demuxer) + concat_ovl_path = None + if cfg.get("enable_segmented_overlay", False) and cfg.get("overlay_path") and os.path.isdir(cfg["overlay_path"]): + seg_min = cfg.get("overlay_seg_min", 10) + seg_max = cfg.get("overlay_seg_max", 30) + target_temp = os.path.dirname(out) + concat_ovl_path = generate_overlay_concat_file(audio_dur, cfg["overlay_path"], seg_min, seg_max, target_temp, cfg["ffprobe"], self.get_media_duration) + + if concat_ovl_path and os.path.exists(concat_ovl_path): + self.log(f"[{task_name}] 🔀 Gắn Overlay liên tục (Concat Demuxer): Chống tràn bộ nhớ cực mạnh!") + # CẦN -stream_loop -1 trước -f concat để playlist loop vô hạn + # Nếu thiếu: overlay chỉ chạy 1 lần rồi mất, video còn lại không có overlay + if has_gpu: cmd.extend(['-hwaccel', 'auto']) + cmd.extend(['-stream_loop', '-1', '-thread_queue_size', '1024', '-f', 'concat', '-safe', '0', '-i', concat_ovl_path]) + overlay_idx = input_count + input_count += 1 + else: + concat_ovl_path = None + + filter_complex = []; final_a_stream = "[1:a]"; current_v = "[0:v]" + + # === CHUỖI XỬ LÝ VIDEO === + # Lật video chống Spam + if cfg["anti_spam_loop"]: + filter_complex.append(f"{current_v}hflip=enable='eq(mod(floor(t/60),2),1)'[v_flipped]") + current_v = "[v_flipped]" + + # Gắn INTRO CLIP (Nối tiếp kiểu XFADE chuẩn Cinematic thay vì đè đớp Overlay) + if intro_clip_idx != -1: + intro_dur = cfg.get("intro_effect_duration", 3.0) + transition_type = cfg.get("xfade_transition_type", "distance").lower() + if transition_type == "random": + transition_type = random.choice(["distance", "smoothleft", "smoothright", "smoothup", "smoothdown"]) + + xf_dur = 1.0 + # Giảm offset xuống 0.2s để tạo vùng đệm (buffer) an toàn. + # Tránh lỗi FFmpeg xfade treo hoặc rớt Moov Atom do stream kết thúc quá sớm. + xf_offset = max(0, intro_dur - xf_dur - 0.2) + + # Đồng bộ Timebase (chuẩn FFmpeg XFade) + filter_complex.append(f"[{intro_clip_idx}:v]setpts=PTS-STARTPTS[intro_pts]") + # Cắt bỏ phần đầu của Background bị trùng lặp với Intro để nối tiếp mượt mà theo đúng thời gian thực + filter_complex.append(f"{current_v}trim=start={xf_offset},setpts=PTS-STARTPTS[bg_pts]") + + # XFADE Video 1 (Intro) -> Video 2 (Background). Intro sẽ chiếm màn hình trước, rồi wipe/distance sang Background. + filter_complex.append(f"[intro_pts][bg_pts]xfade=transition={transition_type}:duration={xf_dur}:offset={xf_offset}[v_with_intro]") + current_v = "[v_with_intro]" + + # Gắn Overlay phân đoạn (Concat Track duy nhất siêu nhẹ) + w, h = cfg["target_w"], cfg["target_h"] + ovl_blend = cfg.get("vis_blend", "Screen").lower() + ovl_opacity = cfg.get("vis_opacity", 0.8) + + if concat_ovl_path: + # Tối ưu thuật toán Blend: Addition nhẹ hơn Screen rất nhiều nhưng kết quả visual (đối với hạt bụi nền đen) là y hệt + if ovl_blend == "screen": ovl_blend = "addition" + + filter_complex.append(f"[{overlay_idx}:v]scale={w}:{h}:force_original_aspect_ratio=decrease,pad={w}:{h}:(ow-iw)/2:(oh-ih)/2,colorchannelmixer=aa={ovl_opacity}[ovl_sized]") + if ovl_blend in ["addition", "multiply", "overlay", "softlight", "screen"]: + # FIX PINK/MAGENTA TRÊN CPU RENDER: + # YUV420 "đen" = Y=0, U=128, V=128 → blend:addition cộng thêm 128 vào chroma + # → U_base+128 = overflow → HỒNG RỰC. GPU tự convert RGB nội bộ nên không bị. + # Fix: ép sang gbrp (RGB planar) trước khi blend → đen=(0,0,0) → addition đúng. + filter_complex.append(f"{current_v}format=gbrp[_base_rgb]") + filter_complex.append(f"[ovl_sized]format=gbrp[_ovl_rgb]") + filter_complex.append(f"[_base_rgb][_ovl_rgb]blend=all_mode={ovl_blend},format=yuv420p[v_ovl_final]") + else: + filter_complex.append(f"{current_v}[ovl_sized]overlay=0:0[v_ovl_final]") + current_v = "[v_ovl_final]" + + + # Gắn Logo + if logo_idx != -1 and chosen_logo_path: + scale_min = cfg.get("logo_scale_min", 100) + scale_max = max(scale_min, cfg.get("logo_scale_max", 120)) + rand_scale_perc = random.randint(scale_min, scale_max) + rand_scale_factor = rand_scale_perc / 100.0 + + filter_complex.append(f"[{logo_idx}:v]scale=iw*{rand_scale_factor:.3f}:-1[scaled_logo]") + + pos_name, pos_val = "Top-Left", 1 + overlay_x, overlay_y = "0", "0" + if cfg.get("logo_random_pos", False): + pos_val = random.choice([7, 8, 9]) + if pos_val == 7: overlay_y = "main_h-overlay_h" + elif pos_val == 8: overlay_x, overlay_y = "(main_w-overlay_w)/2", "main_h-overlay_h" + elif pos_val == 9: overlay_x, overlay_y = "main_w-overlay_w", "main_h-overlay_h" + + self.log(f"[{task_name}] Logo: {rand_scale_perc}% @ Pos {pos_val}") + filter_complex.append(f"{current_v}[scaled_logo]overlay=x='{overlay_x}':y='{overlay_y}'[v_with_logo]") + current_v = "[v_with_logo]" + + # === CINEMATIC COLOR GRADING === + grade = cfg.get("color_grade_preset", "None (Tự nhiên)") + grade_filter = "" + if grade == "Điện Ảnh Mỹ (Cam ấm, Nền xanh lạnh)": + grade_filter = "eq=contrast=1.15:brightness=0.02:saturation=1.2,colorbalance=rs=0.05:gs=-0.03:bs=-0.08:rh=0.12:gh=0.02:bh=-0.05" + elif grade == "Lãng mạn (Ám hồng, Sáng mịn)": + grade_filter = "eq=contrast=1.05:brightness=0.04:saturation=1.1,colorbalance=rs=0.08:gs=0.02:bs=-0.03:rh=0.10:gh=0.04:bh=0.02,curves=m='0/0.05 0.5/0.55 1/1'" + elif grade == "Cổ điển (Ám vàng đất, Ấm áp)": + grade_filter = "eq=contrast=1.10:brightness=-0.02:saturation=0.75,colorbalance=rs=0.06:gs=0.03:bs=-0.04:rm=0.04:gm=0.02:bm=-0.02" + elif grade == "Kịch tính (Tối lạnh, Đậm màu)": + grade_filter = "eq=contrast=1.25:brightness=-0.05:saturation=0.85,colorbalance=rs=-0.05:gs=-0.03:bs=0.10:rh=-0.02:gh=0.0:bh=0.08,curves=m='0/0 0.15/0.05 0.5/0.45 1/1'" + elif grade == "Phim cũ (Phai màu, Ám vàng nhẹ)": + grade_filter = "eq=contrast=1.08:brightness=0.03:saturation=0.80,colorbalance=rs=0.06:gs=0.04:bs=-0.06:rm=0.03:gm=0.02:bm=-0.04,curves=m='0/0.08 0.5/0.52 1/0.95'" + + if grade_filter: + filter_complex.append(f"{current_v}{grade_filter}[v_graded]") + current_v = "[v_graded]" + + # Burn Subtitle + if ass: + ass_formatted = ass.replace('\\', '/').replace(':', '\\:') + filter_complex.append(f"{current_v}ass='{ass_formatted}'[v_final]") + current_v = "[v_final]" + + # === CHUỖI XỬ LÝ AUDIO (EVASION + EQ TẠI CHỖ) === + aud_filters = [] + if cfg["enable_audio_evasion"] and evasion_params: + atempo = evasion_params['speed'] / evasion_params['pitch'] + # CỰC KỲ QUAN TRỌNG: + # 1. asetpts=PTS-STARTPTS để kéo audio về mốc 0 chuẩn. + # 2. aresample=44100 TRƯỚC KHI lách để đồng bộ tần số gốc. + # 3. aresample=44100 SAU KHI lách để trả file mp4 về tần số chuẩn, chống lỗi Container gây lệch Sub. + aud_filters.append(f"asetpts=PTS-STARTPTS,aresample=44100,asetrate=44100*{evasion_params['pitch']},atempo={atempo},aresample=44100") + aud_filters.append(f"highpass=f={evasion_params['low_cut']},lowpass=f={evasion_params['high_cut']}") + aud_filters.append("aecho=0.8:0.9:5:0.1") + + if cfg["enable_podcast_filter"]: + aud_filters.extend(["highpass=f=80,lowpass=f=14000", "acompressor=threshold=-12dB:ratio=3:attack=5:release=50"]) + if cfg["smart_audio_level"]: + aud_filters.append("dynaudnorm=f=150:g=15") + + aud_filters.append(f"volume={cfg['voice_vol']}") + af_chain = ",".join(aud_filters) if aud_filters else "acopy" + + filter_complex.append(f"[1:a]{af_chain}[proc_a]") + final_a_stream = "[proc_a]" + + # Mix BGM + if bgm: + filter_complex.append(f"[2:a]volume={cfg['bgm_vol']}[bgm_v]") + filter_complex.append(f"{final_a_stream}[bgm_v]amix=inputs=2:duration=first:dropout_transition=2[aout]") + final_a_stream = "[aout]" + + if filter_complex: cmd.extend(['-filter_complex', ";".join(filter_complex)]) + + map_v = "0:v" if current_v == "[0:v]" else current_v + map_a = "1:a" if final_a_stream == "[1:a]" else final_a_stream + cmd.extend(['-map', map_v, '-map', map_a]) + cmd.extend(['-c:v', video_codec, '-pix_fmt', 'yuv420p']) + + # Nâng cấp toàn diện Preset cho NVENC / CPU đảm bảo Nét Căng + if "nvenc" in video_codec: + if use_target_size: + cmd.extend(['-preset', 'p4', '-rc', 'vbr', '-b:v', br_str, '-maxrate', max_br_str, '-bufsize', buf_str, '-spatial-aq', '1']) + else: # YouTube Optimal + cmd.extend(['-preset', 'p4', '-rc', 'vbr', '-cq', yt_crf, '-maxrate', yt_maxrate, '-bufsize', yt_buf, '-spatial-aq', '1']) + elif "amf" in video_codec: + if use_target_size: + cmd.extend(['-usage', 'transcoding', '-quality', 'balanced', '-rc', 'vbr_peak', '-b:v', br_str]) + else: # AMF YouTube Optimal (vbr_latency/vbr_peak limit) + cmd.extend(['-usage', 'transcoding', '-quality', 'balanced', '-rc', 'cqp', '-qp_i', yt_crf, '-qp_p', yt_crf, '-qp_b', yt_crf]) + elif "qsv" in video_codec: + if use_target_size: + cmd.extend(['-preset', 'faster', '-b:v', br_str]) + else: + cmd.extend(['-preset', 'faster', '-global_quality', yt_crf, '-maxrate', yt_maxrate]) + else: # CPU libx264 + if use_target_size: + cmd.extend(['-preset', 'veryfast', '-b:v', br_str, '-maxrate', max_br_str, '-bufsize', buf_str]) + else: + cmd.extend(['-preset', 'veryfast', '-crf', yt_crf, '-maxrate', yt_maxrate, '-bufsize', yt_buf]) + if is_live: cmd.extend(['-g', str(30 * 2), '-flags', '+cgop']) + + # ÉP FFMPEG KIỂM SOÁT ĐA LUỒNG TỰ ĐỘNG BÊN TRONG (Thay vì spam mở cửa sổ) + # filter_threads: Chia tải cho ASS subtitle và Overlay Addition (không để Auto 0 để tránh sập RAM máy 72 core khi chạy 30 luồng song song) + cmd.extend(['-threads', '4', '-filter_threads', '4']) + + # Dùng -shortest để tự ngắt video khi Audio (đã Evasion) chạy hết + if cfg.get("is_preview", False): cmd.extend(['-t', '60']) + cmd.extend(['-c:a', 'aac', '-b:a', '192k', '-shortest', out]) + + try: self._log_and_run_subprocess(cmd, task_name) + except Exception as e: + if not is_retry and any(c in video_codec for c in["nvenc", "amf", "qsv"]): + self.log(f"[{task_name}] GPU encoding failed. Retrying with CPU (libx264)...") + self.run_super_fast_one_pass_mux(vis_base_short, aud, ass, out, bitrate, cfg, task_name, t_id, evasion_params, audio_dur, logo_folder=logo_folder, is_retry=True) + else: raise e + + def prepare_intro_for_concat(self, intro_path, out_path, bitrate, cfg, task_name, is_retry=False): + width, height = cfg["target_w"], cfg["target_h"]; br_str = str(bitrate) + "k"; video_codec = "libx264" if is_retry else cfg.get("video_encoder", "libx264") + cmd = [cfg["ffmpeg"], '-y', '-hide_banner', '-loglevel', 'error', '-i', intro_path, '-vf', f"scale={width}:{height}:force_original_aspect_ratio=decrease:flags=lanczos,pad={width}:{height}:(ow-iw)/2:(oh-ih)/2,setsar=1", '-c:v', video_codec] + use_target_size = cfg.get("enable_target_size", False) or cfg.get("livestream_mode", False) + if "nvenc" in video_codec: + cmd.extend(['-preset', 'p4', '-b:v', br_str] if use_target_size else ['-preset', 'p4', '-rc', 'constqp', '-qp', '26', '-bf', '0']) + elif "amf" in video_codec: + cmd.extend(['-rc', 'vbr_peak', '-b:v', br_str] if use_target_size else ['-rc', 'cqp', '-qp_i', '26', '-qp_p', '26', '-qp_b', '26', '-b_depth', '0']) + elif "qsv" in video_codec: + cmd.extend(['-preset', 'faster', '-b:v', br_str] if use_target_size else ['-preset', 'faster', '-global_quality', '26', '-b_strategy', '0']) + else: + cmd.extend(['-preset', 'veryfast', '-b:v', br_str] if use_target_size else ['-preset', 'veryfast', '-crf', '20']) + cmd.extend(['-c:a', 'aac', '-b:a', '192k', out_path]); + try: self._log_and_run_subprocess(cmd, f"{task_name}-IntroPrep") + except Exception as e: + if not is_retry and any(c in video_codec for c in["nvenc", "amf", "qsv"]): self.prepare_intro_for_concat(intro_path, out_path, bitrate, cfg, task_name, is_retry=True) + else: raise e + + def create_seamless_loop(self, input_video, out_video, duration, task_name, cfg): + """Tiếp quản Video gốc: Cắt làm đôi, đảo vị trí, và Crossfade vết đứt gãy ở giữa. + Tạo ra Video mới có Frame Đầu và Cuối trùng khớp 100%, sẵn sàng Stream Loop vô tận k lộ k vết cắt.""" + if duration <= 3.0: shutil.copy2(input_video, out_video); return + + t_mid = duration / 2.0 + xfade_dur = min(1.0, t_mid * 0.4) + + # Theo yêu cầu user: Chỉ giữ lại Transition "XFade Cinematic" (smooth/distance) + pro_transitions = [ + "distance", "smoothleft", "smoothright", "smoothup", "smoothdown" + ] + user_trans = cfg.get("xfade_transition_type", "Random") + trans = user_trans if user_trans != "Random" else random.choice(pro_transitions) + + offset = duration - t_mid - xfade_dur + if offset < 0: offset = 0 + + filter_complex = f"[0:v]trim=start={t_mid}:end={duration},setpts=PTS-STARTPTS[partB];" \ + f"[0:v]trim=start=0:end={t_mid},setpts=PTS-STARTPTS[partA];" \ + f"[partB][partA]xfade=transition={trans}:duration={xfade_dur}:offset={offset}[v]" + + cmd = [cfg["ffmpeg"], '-y', '-hide_banner', '-loglevel', 'error', '-i', input_video] + cmd.extend(['-filter_complex', filter_complex, '-map', '[v]']) + # Dùng GPU encoder nếu có (tăng tốc trung gian 3-5 lần) + enc = cfg.get("video_encoder", "libx264") + if enc in ["h264_nvenc", "h264_amf", "h264_qsv"]: + if "nvenc" in enc: hw_opts = ["-preset", "p2", "-rc", "constqp", "-qp", "18", "-bf", "0"] + elif "amf" in enc: hw_opts = ["-rc", "cqp", "-qp_i", "18", "-qp_p", "18", "-qp_b", "18", "-b_depth", "0"] + else: hw_opts = ["-global_quality", "18", "-b_strategy", "0"] + cmd.extend(['-c:v', enc] + hw_opts + ['-pix_fmt', 'yuv420p', out_video]) + else: + cmd.extend(['-c:v', 'libx264', '-preset', 'fast', '-crf', '14', '-pix_fmt', 'yuv420p', out_video]) + self._log_and_run_subprocess(cmd, f"{task_name}-SeamlessLoop") + + def xfade_concat_videos(self, video_list, out_path, task_name, cfg, transition_type=None, duration=1.0): + """Ghép video với chuyển cảnh chuyên nghiệp random (CapCut-level). + Mỗi điểm cắt random 1 kiểu transition khác nhau cho đa dạng, mượt mà. + (Phiên bản nâng cấp V10.1: Hỗ trợ CHUNKING Đệ Quy không giới hạn, RAM không bao giờ tràn)""" + + if not video_list: raise ValueError("Video list for xfade is empty.") + if len(video_list) == 1: shutil.copy2(video_list[0], out_path); return + + MAX_INPUTS = 15 # Ngưỡng an toàn tuyệt đối cho RAM / Filtergraph FFmpeg + + # ===================================================================== + # 🛡️ 1. THUẬT TOÁN CHIA LÔ (CHUNKING) NẾU SỐ LƯỢNG VƯỢT MỨC AN TOÀN + # ===================================================================== + if len(video_list) > MAX_INPUTS: + self.log(f"[{task_name}] 🧩 Số lượng phase lớn ({len(video_list)}). Bật chế độ Chunking (mỗi lô {MAX_INPUTS} file)...") + chunk_files =[] + temp_dir = os.path.dirname(out_path) + + # Chia mảng lớn thành nhiều Lô nhỏ + for i in range(0, len(video_list), MAX_INPUTS): + chunk = video_list[i:i + MAX_INPUTS] + + # Nếu lô này chỉ có 1 file, không cần xfade, nạp thẳng + if len(chunk) == 1: + chunk_files.append(chunk[0]) + else: + # Tạo file trung gian cho lô + chunk_out = os.path.join(temp_dir, f"chunk_xfade_{uuid.uuid4().hex[:8]}.mp4") + # GỌI ĐỆ QUY: Cho lô nhỏ trộn xfade lại với nhau + self.xfade_concat_videos(chunk, chunk_out, f"{task_name}_chk{i//MAX_INPUTS}", cfg, transition_type, duration) + chunk_files.append(chunk_out) + + # Trộn các Lô trung gian lại với nhau bằng chính hàm này để ra File Cuối + self.log(f"[{task_name}] 🔗 Đang ráp {len(chunk_files)} lô lớn lại thành Master Video...") + self.xfade_concat_videos(chunk_files, out_path, task_name, cfg, transition_type, duration) + + # 🧹 Dọn rác các file Lô trung gian để không tràn ổ đĩa + for cf in chunk_files: + if cf not in video_list and os.path.exists(cf): + try: os.remove(cf) + except: pass + return + + # ===================================================================== + # 🚀 2. XỬ LÝ FFMPEG GỐC CHO LÔ DƯỚI 15 FILE (Lõi đồ thị XFADE) + # ===================================================================== + pro_transitions =[ + "distance", "smoothleft", "smoothright", "smoothup", "smoothdown" + ] + + cmd = [cfg["ffmpeg"], '-y', '-hide_banner', '-loglevel', 'error'] + filter_complex = "" + durations =[self.get_media_duration(cfg["ffprobe"], v) for v in video_list] + + for path in video_list: + cmd.extend(['-i', path]) + + curr_v = "[0:v]" + offset = 0 + + if not transition_type and "xfade_transition_type" in cfg: + transition_type = cfg["xfade_transition_type"] + + for i in range(1, len(video_list)): + prev_dur = durations[i-1] + if prev_dur <= duration: offset += 0.1 + else: offset += prev_dur - duration + + # Random transition cho mỗi điểm cắt (đa dạng như CapCut) + chosen_trans = transition_type if transition_type and transition_type != "Random" else random.choice(pro_transitions) + next_v = f"[{i}:v]" + out_v = f"[vx{i}]" if i < len(video_list) - 1 else "[v_final]" + + filter_complex += f"{curr_v}{next_v}xfade=transition={chosen_trans}:duration={duration}:offset={offset}{out_v};" + curr_v = out_v + + # Dùng GPU encoder cho bước trung gian (tăng tốc cực mạnh, giữ chất lượng lossless) + enc = cfg.get("video_encoder", "libx264") + if enc in["h264_nvenc", "h264_amf", "h264_qsv"]: + if "nvenc" in enc: + hw_opts =["-preset", "p2", "-rc", "constqp", "-qp", "18", "-bf", "0"] + elif "amf" in enc: + hw_opts =["-rc", "cqp", "-qp_i", "18", "-qp_p", "18", "-qp_b", "18", "-b_depth", "0"] + else: + hw_opts = ["-global_quality", "18", "-b_strategy", "0"] + cmd.extend(["-filter_complex", filter_complex, "-map", "[v_final]", "-c:v", enc] + hw_opts + ["-pix_fmt", "yuv420p", out_path]) + else: + cmd.extend(["-filter_complex", filter_complex, "-map", "[v_final]", "-c:v", "libx264", "-preset", "superfast", "-crf", "18", "-pix_fmt", "yuv420p", out_path]) + + self._log_and_run_subprocess(cmd, f"{task_name}-XFadeConcat") + + def fast_concat_videos(self, video_list, out_path, task_name, cfg): + if not video_list: return + concat_list_file = os.path.join(os.path.dirname(video_list[0]), f"concat_list_{uuid.uuid4().hex}.txt") + try: + with open(concat_list_file, 'w', encoding='utf-8') as f: + for video in video_list: + safe_path = video.replace(os.sep, '/').replace("'", "'\\''") + f.write(f"file '{safe_path}'\n") + cmd = [cfg["ffmpeg"], '-y', '-hide_banner', '-loglevel', 'error', '-f', 'concat', '-safe', '0', '-i', concat_list_file, '-c', 'copy', out_path] + self._log_and_run_subprocess(cmd, f"{task_name}-Concat") + finally: + if os.path.exists(concat_list_file): os.remove(concat_list_file) + + def generate_ass(self, srt_path, ass_path, style_settings, speed_factor=1.0, video_w=1280, video_h=720): + if not HAS_PYSUBS2: return False + try: + subs = pysubs2.load(srt_path, encoding="utf-8") + if speed_factor != 1.0: + for line in subs: line.start = int(line.start / speed_factor); line.end = int(line.end / speed_factor) + + for line in subs: + line.text = line.text.replace(r'\N', ' ').replace('\n', ' ').replace('\r', '').strip() + line.text = re.sub(r'\s+', ' ', line.text) + + cleaned_events =[] + for i, line in enumerate(subs): + if i > 0: + prev = cleaned_events[-1] + if line.start < prev.end: + # FIX OVERLAP: Thêm .strip() chống lỗi khoảng trắng thừa của Whisper AI + if line.text.strip() == prev.text.strip(): + prev.end = max(prev.end, line.end) + continue + else: + prev.end = line.start - 1 + if line.end <= line.start: continue + cleaned_events.append(line) + + subs.events = cleaned_events + + s = style_settings + final_subs, style = pysubs2.SSAFile(), pysubs2.SSAStyle() + + final_subs.info["PlayResX"] = str(video_w) + final_subs.info["PlayResY"] = str(video_h) + final_subs.info["WrapStyle"] = "1" + + try: style.fontname = s.get("fontname", "Arial") + except: return False + try: style.fontsize = float(s.get("fontsize", 48)) + except: return False + try: style.primarycolor = pysubs2.Color(*s.get("primary_color",[255, 255, 255])) + except: return False + try: style.secondarycolor = pysubs2.Color(*s.get("karaoke_color",[255, 255, 0])) + except: return False + try: style.outlinecolor = pysubs2.Color(*s.get("outline_color", [0, 0, 0])) + except: return False + try: style.outline = float(s.get("outline", 2.5)) + except: return False + try: style.shadow = float(s.get("shadow", 1.5)) + except: return False + try: style.bold = bool(s.get("bold", True)) + except: return False + # alignment is dynamic based on bounding box + try: style.alignment = int(s.get("alignment", 2)) + except: return False + + if bool(s.get("use_box", False)): + style.borderstyle = 3 + bc = s.get("box_color",[0, 0, 0]); transparency = int(s.get("box_transparency", 50)) + alpha = int(transparency / 100 * 255); style.backcolor = pysubs2.Color(bc[0], bc[1], bc[2], alpha) + + has_box = "bounding_box" in s and len(s["bounding_box"]) == 4 + custom_clip = "" + box_w = video_w + box_h = video_h + + if has_box: + x1, y1, x2, y2 = s["bounding_box"] + box_w, box_h = max(10, x2 - x1), max(10, y2 - y1) + + # === FIX: Pad clip inward bằng outline+shadow để tránh cắt viền chữ === + # libass clip mask cắt PIXEL cực kỳ cứng: viền chữ (outline) và đổ bóng (shadow) + # nhô ra ngoài một vài pixel. Nếu clip sát đúng tọa độ box thì chữ đầu/cuối bị "mẻ". + # Giải pháp: thu nhỏ clip vào trong một khoảng = outline + shadow + 1 px buffer. + outline_px = int(float(s.get("outline", 2.5))) + shadow_px = int(float(s.get("shadow", 1.5))) + clip_pad = outline_px + shadow_px + 2 # +2 px buffer an toàn + cx1 = max(0, x1 - clip_pad) + cy1 = max(0, y1 - clip_pad) + cx2 = min(video_w, x2 + clip_pad) + cy2 = min(video_h, y2 + clip_pad) + custom_clip = f"\\clip({cx1},{cy1},{cx2},{cy2})" + + # box_w/box_h dùng để tính font wrap — dùng kích thước BOX gốc (không mở rộng clip) + box_w, box_h = max(10, x2 - x1), max(10, y2 - y1) + + # Margin đẩy chữ vào trong box gốc + thêm padding để chữ không sát rìa + inner_pad = clip_pad + style.marginl = x1 + inner_pad + style.marginr = max(0, video_w - x2 + inner_pad) + style.marginv = max(0, video_h - y2 + inner_pad) + style.alignment = 2 # bottom center inside box + + final_subs.styles["Default"] = style + + # --- AUTO SCALE FONT LOGIC --- + base_fs = style.fontsize + def get_opt_fs_and_wrap(text_str): + if not has_box: return base_fs, text_str + + clean_text = text_str.strip() + is_cjk_line = False + for ch in clean_text: + if 0x3000 <= ord(ch) <= 0x9FFF or 0xAC00 <= ord(ch) <= 0xD7AF or 0xF900 <= ord(ch) <= 0xFAFF or 0x0E00 <= ord(ch) <= 0x0E7F: + is_cjk_line = True; break + + words = list(clean_text.replace(' ', '')) if is_cjk_line else clean_text.split() + if not words: return base_fs, text_str + + if scale_mode == "Dynamic": + # Dynamic: Cho phép phóng to (lên tới 250.0) nhưng GIỚI HẠN SỐ DÒNG (khoảng 18-20 kí tự/dòng) + # để KHÔNG BỊ bẻ "XIN CHÀO" thành 2 dòng (vụ hình vuông đợt trước) + low, high = 10.0, max(float(base_fs), 250.0) + max_allowed_lines = max(1, len(clean_text) // 18 + (1 if len(clean_text) % 18 > 0 else 0)) + else: + # FixedMax: Giữ form giới hạn max = base_fs như cũ để lặp file đồng bộ + low, high = 10.0, float(base_fs) + max_allowed_lines = 100 + + best_f = base_fs + for _ in range(12): + mid = (low + high) / 2 + avg_char_w = mid * 0.55 + line_height = mid * 1.2 + + lines = 1; cur_w = 0 + for w in words: + ww = len(w) * avg_char_w + if cur_w + ww > box_w: + lines += 1; cur_w = ww + else: + cur_w += ww + (0 if is_cjk_line else avg_char_w) + + if lines <= max_allowed_lines and lines * line_height <= box_h: + best_f = mid; low = mid + else: + high = mid + + # Perform the actual wrap with best_f + avg_char_w = best_f * 0.55 + wrapped_lines = [] + current_line = [] + cur_w = 0 + for w in words: + ww = len(w) * avg_char_w + if cur_w + ww > box_w and current_line: + wrapped_lines.append("".join(current_line) if is_cjk_line else " ".join(current_line)) + current_line = [w] + cur_w = ww + else: + current_line.append(w) + cur_w += ww + (0 if is_cjk_line else avg_char_w) + if current_line: + wrapped_lines.append("".join(current_line) if is_cjk_line else " ".join(current_line)) + + final_text = r"\N".join(wrapped_lines) + return best_f, final_text + + processed_events =[] + max_words = int(s.get("max_words_per_line", 7)) + + def _is_cjk(text): + for ch in text: + cp = ord(ch) + if 0x3000 <= cp <= 0x9FFF or 0xAC00 <= cp <= 0xD7AF or 0xF900 <= cp <= 0xFAFF or 0x0E00 <= cp <= 0x0E7F: return True + return False + + def _split_cjk_tokens(text, max_chars): + return [text[i:i+max_chars] for i in range(0, len(text), max_chars)] + + if bool(s.get("split_long_lines", False)): + for line in subs: + clean_text = line.text.strip() + if _is_cjk(clean_text): + stripped = re.sub(r'\s+', '', clean_text) + if len(stripped) > max_words: + total_chars = len(stripped) or 1 + time_per_char = line.duration / total_chars + current_start = line.start + chunks = _split_cjk_tokens(stripped, max_words) + for idx_c, chunk in enumerate(chunks): + chunk_duration = int(len(chunk) * time_per_char) + chunk_end = current_start + chunk_duration + if chunk_end > line.end or idx_c == len(chunks) - 1: chunk_end = line.end + if chunk_end > current_start: + processed_events.append(pysubs2.SSAEvent(start=current_start, end=chunk_end, text=chunk)) + current_start = chunk_end + else: + processed_events.append(line) + else: + words = clean_text.split() + if len(words) > max_words: + total_chars = len(clean_text.replace(' ', '')) or 1 + time_per_char = line.duration / total_chars + current_start = line.start + for i in range(0, len(words), max_words): + chunk_words = words[i:i+max_words] + chunk_text = " ".join(chunk_words) + chunk_chars = len(chunk_text.replace(' ', '')) + chunk_duration = int(chunk_chars * time_per_char) + chunk_end = current_start + chunk_duration + if chunk_end > line.end or (i + max_words >= len(words)): chunk_end = line.end + if chunk_end > current_start: + processed_events.append(pysubs2.SSAEvent(start=current_start, end=chunk_end, text=chunk_text)) + current_start = chunk_end + else: + processed_events.append(line) + else: + processed_events = subs.events + + animation_style = s.get("animation_style", "Tĩnh") + scale_mode = s.get("scale_mode", "Dynamic") + global_opt_fs = None + if has_box and scale_mode == "FixedMax" and processed_events: + global_opt_fs = min((get_opt_fs_and_wrap(line.text)[0] for line in processed_events if line.text.strip()), default=base_fs) + + is_animated_style = animation_style in ["Karaoke (Tô màu)"] # "Hiện Theo Từ (Word by Word)"] tạm vô hiệu hóa + + for line in processed_events: + line.style = "Default" + + # Tính opt_fs LUÔN từ get_opt_fs_and_wrap (cả hai loại style đều cần giá trị này) + opt_fs, wrapped_text = get_opt_fs_and_wrap(line.text) + if global_opt_fs is not None: opt_fs = global_opt_fs + + # === QUAN TRỌNG: Chỉ áp \N hard-wrap cho style Tĩnh và Fade === + # Với Karaoke/Word-by-Word: KHÔNG gán wrapped_text vì code animation sẽ + # duyệt từng character → `\` và `N` bị tách thành 2 char riêng → render thành raw text. + # Animated styles dựa vào margin (đã set đúng) để wrap tự nhiên. + if not is_animated_style: + line.text = wrapped_text # chỉ áp \N cho style Tĩnh / Fade + + fs_tag = f"\\fs{int(opt_fs)}" + prefix_tags = f"{{{custom_clip}{fs_tag}}}" if has_box else f"{{{fs_tag}}}" + + if animation_style == "Hiện Dần (Fade)": line.text = f"{prefix_tags}{{\\fad(250,250)}}{line.text}" + elif animation_style in ["Karaoke (Tô màu)"]: # "Hiện Theo Từ (Word by Word)": + clean_line = re.sub(r'\{[^}]*\}', '', line.text).strip() + is_cjk_line = False + for ch in clean_line: + cp = ord(ch) + if 0x3000 <= cp <= 0x9FFF or 0xAC00 <= cp <= 0xD7AF or 0xF900 <= cp <= 0xFAFF or 0x0E00 <= cp <= 0x0E7F: + is_cjk_line = True; break + + if is_cjk_line: + # Đối với tiếng Hàn, Nhật, Trung.. mảng words sẽ là TỪNG KÝ TỰ MỘT + words = list(clean_line.replace(' ', '')) + else: + words = clean_line.split() + + if not words or line.duration <= 0: + line.text = f"{prefix_tags}{line.text}" + final_subs.append(line); continue + + total_chars = len(re.sub(r'\s+', '', "".join(words))) or 1 + time_per_char = line.duration / total_chars + + if animation_style == "Karaoke (Tô màu)": + animated_text = "".join([f"{{\\k{int((len(word) * time_per_char) / 10)}}}{word}" + (" " if not is_cjk_line else "") for word in words if len(word) > 0]) + line.text = f"{prefix_tags}{animated_text.strip()}" + else: + # FIX LOGIC: Hiện theo từ có Fade-in lần lượt cực chuẩn + time_per_word = line.duration / len(words) + animated_text = "" + for w_idx, word in enumerate(words): + t_start = int(w_idx * time_per_word) + t_fade = min(300, int(time_per_word)) # Mỗi từ fade trong tối đa 300ms + animated_text += f"{{\\alpha&HFF&\\t({t_start}, {t_start + t_fade}, \\alpha&H00&)}}{word}" + (" " if not is_cjk_line else "") + line.text = f"{prefix_tags}{animated_text.strip()}" + else: + line.text = f"{prefix_tags}{line.text}" + + final_subs.append(line) + + final_subs.save(ass_path, encoding='utf-8-sig') + return True + except: return False + + # ===================================================================== + # 🐕 GLOBAL OUTPUT WATCHDOG ENGINE + # ===================================================================== + def _init_global_watchdog(self): + """Khởi tạo mục tiêu cho Radar trước khi chạy batch.""" + self.watchdog_running = False # Ép chết luồng cũ nếu có (chống Zombie Thread) + time.sleep(0.1) # Chờ luồng cũ thoát hẳn + + self.watchdog_expected_files = [] + + for task in getattr(self, 'tasks_list',[]): + safe_name = re.sub(r'[\\/*?:"<>|]', "", os.path.splitext(task["target_filename"])[0]) + out_folder = task.get("specific_output_root", "") + if not out_folder: continue + + out_path = os.path.join(out_folder, f"{safe_name}.mp4") + self.watchdog_expected_files.append(out_path) + + total = len(self.watchdog_expected_files) + if total > 0: + self.watchdog_running = True + self.watchdog_last_done_count = 0 + self.watchdog_last_progress_time = time.time() + self.lbl_big_progress.config(text=f"0 / {total}") + self.prog_canvas.coords(self.prog_rect, 0, 0, 0, 25) + self.lbl_global_status.config(text="Trạng thái: 🚀 Đã đưa lên NAS, đang theo dõi tiến độ...", fg="#00ffcc") + + # Start thread ngầm + threading.Thread(target=self._watchdog_thread_loop, daemon=True).start() + + def _force_watchdog_scan(self): + """Cho phép user bấm nút để bắt chó cắn ngay, không chờ 30 phút.""" + if not self.watchdog_running or not self.watchdog_expected_files: + messagebox.showinfo("Radar", "Chưa có danh sách Batch nào đang chạy để kiểm tra!") + return + self.lbl_global_status.config(text="Trạng thái: 🔍 Đang càn quét ổ cứng/NAS kiểm tra...", fg="#ffdd00") + threading.Thread(target=self._perform_actual_scan, daemon=True).start() + + def _watchdog_thread_loop(self): + """Luồng chạy ngầm liên tục, đếm ngược thời gian để quét.""" + last_scan_time = 0 + while self.watchdog_running: + now = time.time() + # Nếu đến lịch (30 phút = 1800 giây) thì tiến hành quét thực tế + if now - last_scan_time >= (self.watchdog_interval_mins * 60): + self._perform_actual_scan() + last_scan_time = time.time() + + # Cập nhật UI đếm ngược thời gian/Cảnh báo treo + self.after(0, self._update_watchdog_ui_timings) + time.sleep(1) # Ngủ 1s để không ăn CPU + + def _perform_actual_scan(self): + """Tiến hành kiểm tra vật lý sự tồn tại của file MP4 đầu ra.""" + done_count = 0 + total = len(self.watchdog_expected_files) + + for file_path in self.watchdog_expected_files: + try: + # File tồn tại và size > 1MB (Tránh file lỗi, file rác temp) + if os.path.exists(file_path) and os.path.getsize(file_path) > 1024 * 1024: + done_count += 1 + except: + pass + + # Gọi UI update trên Main Thread + self.after(0, lambda: self._apply_scan_results(done_count, total)) + + def _apply_scan_results(self, current_done, total): + """Cập nhật dữ liệu sau khi quét xong lên Giao diện 2026.""" + now = time.time() + + # Nếu có sự nhảy số (Có máy render xong file mới) + if current_done > self.watchdog_last_done_count: + self.watchdog_last_done_count = current_done + self.watchdog_last_progress_time = now # Reset mốc thời gian chống treo + + # Cập nhật Progress Text & Bar + percentage = (current_done / total) * 100 if total > 0 else 0 + self.lbl_big_progress.config(text=f"{current_done} / {total}") + + # Vẽ độ dài thanh Progress + self.dashboard_frame.update_idletasks() # Ép UI cập nhật kích thước ngay lập tức + canvas_width = self.prog_canvas.winfo_width() + if canvas_width <= 1: canvas_width = 800 # Fallback nếu Tkinter bị ngáo + bar_len = (percentage / 100) * canvas_width + self.prog_canvas.coords(self.prog_rect, 0, 0, bar_len, 25) + + # Cập nhật Text + self.lbl_last_check.config(text=f"Cập nhật lần cuối: {datetime.now().strftime('%H:%M:%S')}") + + if current_done >= total: + self.lbl_global_status.config(text="🎉 TRẠNG THÁI: HOÀN THÀNH 100% TOÀN BỘ CHIẾN DỊCH!", fg="#00ff00") + self.prog_canvas.itemconfig(self.prog_rect, fill="#00ff00") + self.watchdog_running = False # Tự tắt chó + else: + self.lbl_global_status.config(text=f"Trạng thái: 🟢 Đang Render (Tiến độ {percentage:.1f}%)", fg="#00ffcc") + self.prog_canvas.itemconfig(self.prog_rect, fill="#00ff88") + + def _update_watchdog_ui_timings(self): + """Cập nhật các cảnh báo thời gian thực.""" + if getattr(self, 'watchdog_last_done_count', 0) == len(self.watchdog_expected_files): + return # Xong rồi thì thôi + + now = time.time() + time_since_last_progress = now - self.watchdog_last_progress_time + stall_seconds = self.stall_timeout_hours * 3600 + + # CẢNH BÁO STALL 2 TIẾNG! + if time_since_last_progress > stall_seconds and self.watchdog_last_done_count > 0: + stall_hrs = int(time_since_last_progress // 3600) + stall_mins = int((time_since_last_progress % 3600) // 60) + warning_txt = f"⚠️ BÁO ĐỘNG ĐỎ: Đã {stall_hrs}h{stall_mins}p không có thêm tập nào ra lò! Kiểm tra lại Trại thợ ngay!" + self.lbl_global_status.config(text=warning_txt, fg="#ff3333") + self.prog_canvas.itemconfig(self.prog_rect, fill="#ff3333") + self.dashboard_frame.config(highlightbackground="#ff3333") # Đổi màu viền khung + +if __name__ == "__main__": + if len(sys.argv) > 2 and sys.argv[1] == "--colab-worker": + tasks_json_path = sys.argv[2] + + # Override messagebox để không lỗi màn hình ảo Xvfb + def _mock_msg(*a, **kw): pass + messagebox.showinfo = _mock_msg + messagebox.showerror = _mock_msg + messagebox.showwarning = _mock_msg + + app = BatchProLoopUltimate() + + def run_colab(): + print("🚀 NATIVE COLAB WORKER INITIATED!") + try: + with open(tasks_json_path, 'r', encoding='utf-8') as f: + manifest = json.load(f) + + hf_repo = manifest.get("hf_repo", "") + hf_base_path = manifest.get("hf_base_path", "") # "sessions/ABCDEF" + hf_token = os.environ.get("HF_TOKEN", "") # Colab secrets hoặc env var + session_id = manifest.get("session_id", "UNKNOWN") + + # Thư mục output trên Colab (trong RAM/SSD Colab ~200GB) + local_output = f"/content/hf_workdir/{hf_base_path}/output" + os.makedirs(local_output, exist_ok=True) + + # Load session settings từ manifest + with tempfile.NamedTemporaryFile('w', delete=False, suffix='.json', encoding='utf-8') as tmp: + json.dump(manifest.get('session_data', {}), tmp) + tmp_name = tmp.name + app.load_project_file(tmp_name) + os.remove(tmp_name) + + app.tasks_list = manifest.get('tasks_list', []) + + # Ép output về thư mục Colab local + app.txt_outputs.delete("1.0", tk.END) + app.txt_outputs.insert("1.0", local_output) + app.check_output_var.set(True) + + print(f"✅ SESSION [{session_id}] loaded: {len(app.tasks_list)} tasks.") + print(f"📂 Output → {local_output}") + if hf_repo: + print(f"☁️ HF Repo → https://huggingface.co/datasets/{hf_repo}") + print("─" * 70) + + # ─── HF STREAMING UPLOADER ───────────────────────────────────────── + # Thread này chạy ngầm, scan output folder, upload từng MP4 lên HF + # ngay sau khi render xong → xóa local để không đầy 200GB disk + uploaded_links = [] + uploader_running = [True] + + def hf_uploader_thread(): + if not hf_repo or not hf_token: + print("⚠️ Không có HF Token/Repo → bỏ qua auto-upload.") + return + from huggingface_hub import HfApi + api = HfApi() + seen = set() + while uploader_running[0]: + try: + for fname in os.listdir(local_output): + if not fname.endswith(".mp4"): continue + if fname in seen: continue + fpath = os.path.join(local_output, fname) + # Đợi file ghi xong (mtime > 3s, size > 1MB) + if time.time() - os.path.getmtime(fpath) < 3: continue + if os.path.getsize(fpath) < 1024 * 1024: continue + + # Upload với retry 3 lần + for attempt in range(3): + try: + remote_path = f"{hf_base_path}/output/{fname}" + api.upload_file( + path_or_fileobj=fpath, + path_in_repo=remote_path, + repo_id=hf_repo, + repo_type="dataset", + token=hf_token, + ) + # link = f"https://huggingface.co/datasets/{hf_repo}/resolve/main/{remote_path}" + uploaded_links.append(fname) + print(f"✅ ĐÃ UPLOAD LÊN HF VÀ XÓA LOCAL: {fname}") + # Xóa local ngay để tiết kiệm disk + os.remove(fpath) + seen.add(fname) + break + except Exception as e_up: + print(f"⚠️ Upload lần {attempt+1} thất bại: {e_up}") + if attempt == 2: + print(f"❌ Bỏ qua {fname} sau 3 lần thử.") + seen.add(fname) + except: pass + time.sleep(5) + + if hf_repo and hf_token: + threading.Thread(target=hf_uploader_thread, daemon=True).start() + print("📡 HF Streaming Uploader đã khởi động (upload ngầm ngay khi render xong từng bài).") + # ────────────────────────────────────────────────────────────────── + + # Bắt đầu render (ĐÃ CHẠY ĐA LUỒNG TỰ ĐỘNG THEO CPU CORE CỦA COLAB) + app.start_batch() + + def check_done(): + if not getattr(app, 'processing', False): + print("\n⏳ Render xong. Chờ uploader đẩy nốt các file cuối lên HF...") + uploader_running[0] = False + time.sleep(15) # Đợi uploader xử lý các file cuối + + print("\n" + "─" * 70) + print("🎉 COLAB WORKER: HOÀN TẤT TOÀN BỘ!") + print(f"✅ Tổng số video đã đẩy lên kho: {len(uploaded_links)} file.") + if hf_repo: + print(f"\n🗂️ LINK TẢI TOÀN BỘ VIDEO TẠI ĐÂY:") + print(f" 👉 https://huggingface.co/datasets/{hf_repo}/tree/main/{hf_base_path}/output") + print("─" * 70) + + # AUTO-DISCONNECT COLAB (nếu chạy trong môi trường Colab) + try: + from google.colab import runtime + print("⚡ AUTO-DISCONNECT: Ngắt kết nối Colab runtime để tiết kiệm GPU...") + runtime.unassign() + except: pass + + app.destroy() + sys.exit(0) + app.after(8000, check_done) + + app.after(8000, check_done) + + except Exception as e: + import traceback + print(f"❌ COLAB LỖI KHỞI ĐỘNG:\n{traceback.format_exc()}") + app.destroy() + sys.exit(1) + + app.after(2000, run_colab) + app.mainloop() + else: + app = BatchProLoopUltimate() + app.mainloop() \ No newline at end of file diff --git a/sessions/2D392E/assets/overlay/0424 (2).mp4 b/sessions/2D392E/assets/overlay/0424 (2).mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1628b8a820595426614ac157fdd072d011ebbf42 --- /dev/null +++ b/sessions/2D392E/assets/overlay/0424 (2).mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e829fea67b16f70d87425bcf338463b903d7b90de312cb00e08fbb00d372482b +size 66790162 diff --git a/sessions/2D392E/assets/overlay/0505(1).mp4 b/sessions/2D392E/assets/overlay/0505(1).mp4 new file mode 100644 index 0000000000000000000000000000000000000000..99a4174c9fe02097178734e910fb0e6a0918beb8 --- /dev/null +++ b/sessions/2D392E/assets/overlay/0505(1).mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:deaf87afb50b50f23ea0982936c4e18eeae9276e27b80d5e85d123fc7c1d7e22 +size 56941168 diff --git a/sessions/2D392E/assets/overlay/0505(2).mp4 b/sessions/2D392E/assets/overlay/0505(2).mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b5022a0eac3f2fc0464d76cb53eb6dbc198bb9cc --- /dev/null +++ b/sessions/2D392E/assets/overlay/0505(2).mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b257cdeef9e96eda3173c1a84e19a6209ed98df875be7e35c114c1432f635fed +size 169005162 diff --git a/sessions/2D392E/assets/overlay/0505(3).mp4 b/sessions/2D392E/assets/overlay/0505(3).mp4 new file mode 100644 index 0000000000000000000000000000000000000000..371f1618f21e99358a28ae910120220d0a4fb6d2 --- /dev/null +++ b/sessions/2D392E/assets/overlay/0505(3).mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0821f2921f5eb2e5a31422f5d359e73098109c0adebf60b252a76e99e90bb23 +size 103181321 diff --git a/sessions/2D392E/assets/overlay/0505(4).mp4 b/sessions/2D392E/assets/overlay/0505(4).mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5804e2999cbbffdd7d05d34b65c993613df4d403 --- /dev/null +++ b/sessions/2D392E/assets/overlay/0505(4).mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb9a28961660162a40c56b8f44d276f93f14770ba62f94ebbfa3ea7461953941 +size 217443123 diff --git a/sessions/2D392E/assets/overlay/0505.mp4 b/sessions/2D392E/assets/overlay/0505.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c1884bec4e56a951fe3675ae91b606e4696f84ad --- /dev/null +++ b/sessions/2D392E/assets/overlay/0505.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e0e75e5f7bf75f68dfbda0e56ef209d1fff570f42fa8ba5d84c5329fdf7b09d +size 60544577 diff --git a/sessions/2D392E/assets/overlay/Ashes And Dust Particles Flying Around - Free HD Vfx Footage.mp4 b/sessions/2D392E/assets/overlay/Ashes And Dust Particles Flying Around - Free HD Vfx Footage.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ca142ef4f2c37b7aa025c8314164a901a45f4633 --- /dev/null +++ b/sessions/2D392E/assets/overlay/Ashes And Dust Particles Flying Around - Free HD Vfx Footage.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:793dd70478d217e81c48ef71be78984d635268f521badb5319c1dde2e582e1a4 +size 4490263 diff --git a/sessions/2D392E/assets/overlay/Big Dust Particles Pushed By Air 02 - Free HD Vfx Footage.mp4 b/sessions/2D392E/assets/overlay/Big Dust Particles Pushed By Air 02 - Free HD Vfx Footage.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6d90eae060c90ecf106f24c45d33aa1809298b42 --- /dev/null +++ b/sessions/2D392E/assets/overlay/Big Dust Particles Pushed By Air 02 - Free HD Vfx Footage.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6df2bcf3d4f5767777168c5a495b7e6178df692e53fad141350f4f707ca5c15 +size 8439121 diff --git "a/sessions/2D392E/assets/overlay/Black OVERLAY With White Creases To Scratches And Dust (15 Minutes) For Overhead Screen 16\357\274\21735mm.mp4" "b/sessions/2D392E/assets/overlay/Black OVERLAY With White Creases To Scratches And Dust (15 Minutes) For Overhead Screen 16\357\274\21735mm.mp4" new file mode 100644 index 0000000000000000000000000000000000000000..71935526008bc239ee6a1689f125eead28c78cbe --- /dev/null +++ "b/sessions/2D392E/assets/overlay/Black OVERLAY With White Creases To Scratches And Dust (15 Minutes) For Overhead Screen 16\357\274\21735mm.mp4" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6364cecde7d74c55a5e8f7ee9b795c1ae49cd439a051ce0003546232707f0a3e +size 79690427 diff --git a/sessions/2D392E/assets/overlay/Dust Particles On Black Backlit - Free HD Vfx Footage.mp4 b/sessions/2D392E/assets/overlay/Dust Particles On Black Backlit - Free HD Vfx Footage.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9f1769ef3cfcdd6550d87505b8684f16d9378a45 --- /dev/null +++ b/sessions/2D392E/assets/overlay/Dust Particles On Black Backlit - Free HD Vfx Footage.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b61c4f640a195743332f5b1ee010b0f1d105721eddea2da7a259ce4ae0ef4e5b +size 2127897 diff --git a/sessions/2D392E/assets/overlay/Falling Flower Rose Petals - Background [1080P].mp4 b/sessions/2D392E/assets/overlay/Falling Flower Rose Petals - Background [1080P].mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5f5aeb37501a495b400d5cf48e09e6fb945a0326 --- /dev/null +++ b/sessions/2D392E/assets/overlay/Falling Flower Rose Petals - Background [1080P].mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb5b5f61d76548e5c01738616795af54b9562c26a87ccd7cf7f20381aad1be8 +size 13425421 diff --git "a/sessions/2D392E/assets/overlay/Falling Small Cherry Blossom Petals Effect \360\237\214\270 Black Background 1080p60fps\343\200\214Type 2\343\200\215.mp4" "b/sessions/2D392E/assets/overlay/Falling Small Cherry Blossom Petals Effect \360\237\214\270 Black Background 1080p60fps\343\200\214Type 2\343\200\215.mp4" new file mode 100644 index 0000000000000000000000000000000000000000..727d49d272a92b58cc077ea3015119a733a1f5ca --- /dev/null +++ "b/sessions/2D392E/assets/overlay/Falling Small Cherry Blossom Petals Effect \360\237\214\270 Black Background 1080p60fps\343\200\214Type 2\343\200\215.mp4" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27c24ea959cfc004aeb74457b9edaa605c920ac4c7e73b89d184bbb9c23dde56 +size 226646095 diff --git a/sessions/2D392E/assets/overlay/Glitter Dust - Free HD Vfx Footage.mp4 b/sessions/2D392E/assets/overlay/Glitter Dust - Free HD Vfx Footage.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f076e75ac0f40e89179e39a1246914c95cc795a0 --- /dev/null +++ b/sessions/2D392E/assets/overlay/Glitter Dust - Free HD Vfx Footage.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cb2c98b9d5fb1e91527828e147db0c794ccd82bc5164162b3927c1a95abd473 +size 3646039 diff --git a/sessions/2D392E/assets/overlay/Motion Performed By Small Particles - Free Download.mp4 b/sessions/2D392E/assets/overlay/Motion Performed By Small Particles - Free Download.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..efb60b9bd117514d20503ec2140fdc13146adec2 --- /dev/null +++ b/sessions/2D392E/assets/overlay/Motion Performed By Small Particles - Free Download.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:106c5f6ca893c78b4eb47b1031b696e551363b1efd4ee096b5dee12625ace6a4 +size 2401062 diff --git a/sessions/2D392E/assets/overlay/NEW PARTICLES video overlay effect falling down 01 -- FREE DOWNLOAD.mp4 b/sessions/2D392E/assets/overlay/NEW PARTICLES video overlay effect falling down 01 -- FREE DOWNLOAD.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b9030e5b82a05c9011b4416cc587c08ef0b796f0 --- /dev/null +++ b/sessions/2D392E/assets/overlay/NEW PARTICLES video overlay effect falling down 01 -- FREE DOWNLOAD.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e3b7f49608ff7eb9158c55922c2f48323b4076c201febdc5f8531304da2086d +size 13539078 diff --git a/sessions/2D392E/assets/overlay/NEW gold particles overlay smooth dust relaxing video effect.mp4 b/sessions/2D392E/assets/overlay/NEW gold particles overlay smooth dust relaxing video effect.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..60bc391d9679c05ccd57d27f04ac6e3bb29c63f6 --- /dev/null +++ b/sessions/2D392E/assets/overlay/NEW gold particles overlay smooth dust relaxing video effect.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30cfeddfe892372dab5ea53338665dd5980dd1a31bcdcc1db2cd9a018c92819d +size 65035275 diff --git a/sessions/2D392E/assets/overlay/Natural Dust Particles Overlay 03 - Free HD Vfx Footage.mp4 b/sessions/2D392E/assets/overlay/Natural Dust Particles Overlay 03 - Free HD Vfx Footage.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..444bf5e9aefd2b5febce168648b6ef8468a6977a --- /dev/null +++ b/sessions/2D392E/assets/overlay/Natural Dust Particles Overlay 03 - Free HD Vfx Footage.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ada7a5bfc883796efe7f736a352ca823d3cfdc2beca295d1457191099632dbe +size 2034106 diff --git a/sessions/2D392E/assets/overlay/Natural Floating Dust Particles Backlit With Lens Flare 03 - Free HD Vfx Footage.mp4 b/sessions/2D392E/assets/overlay/Natural Floating Dust Particles Backlit With Lens Flare 03 - Free HD Vfx Footage.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4af51f7d1a8aff796c5826ea70e018cca3907872 --- /dev/null +++ b/sessions/2D392E/assets/overlay/Natural Floating Dust Particles Backlit With Lens Flare 03 - Free HD Vfx Footage.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d675f81843e3dd043aec9157675bd01ae33962f296682dfe2ab47d9c622589 +size 4576525 diff --git "a/sessions/2D392E/assets/overlay/Overlay Super Black Background With Scratch And Dust Screen For 16\357\274\21735mm.mp4" "b/sessions/2D392E/assets/overlay/Overlay Super Black Background With Scratch And Dust Screen For 16\357\274\21735mm.mp4" new file mode 100644 index 0000000000000000000000000000000000000000..508cd8461907e2f29714cb344892db284021a82e --- /dev/null +++ "b/sessions/2D392E/assets/overlay/Overlay Super Black Background With Scratch And Dust Screen For 16\357\274\21735mm.mp4" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d78410bc31253f2279700cf57085b7ca4e8ea3bb5a0623e2e4edaf2bff8f6d5 +size 827398 diff --git a/sessions/2D392E/assets/overlay/Overlay Super Black Background With Scratch And Dust Screen For 16-35mm.mp4 b/sessions/2D392E/assets/overlay/Overlay Super Black Background With Scratch And Dust Screen For 16-35mm.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2eb987760e0c727a0822fb5cf90cfd915d6028f9 --- /dev/null +++ b/sessions/2D392E/assets/overlay/Overlay Super Black Background With Scratch And Dust Screen For 16-35mm.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766ae8e812d17225502f8da965ec0c65a2cdb3128f3b360d6ec9b64665f52fb6 +size 750888 diff --git a/sessions/2D392E/assets/overlay/Overlay With A Dust Particles.mp4 b/sessions/2D392E/assets/overlay/Overlay With A Dust Particles.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1aa8458c02e91344b6bdfad38e5ce549ce9a9d9c --- /dev/null +++ b/sessions/2D392E/assets/overlay/Overlay With A Dust Particles.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4abc187d8c863a275b6c954a5b4bf1e4896166c62418f3ee8948f03981aaef9 +size 582824 diff --git a/sessions/2D392E/assets/overlay/Random Particles Overlay Royalty Free HD Video [CC0].mp4 b/sessions/2D392E/assets/overlay/Random Particles Overlay Royalty Free HD Video [CC0].mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a3efec44e3758c79b51feb3d93323063743d9822 --- /dev/null +++ b/sessions/2D392E/assets/overlay/Random Particles Overlay Royalty Free HD Video [CC0].mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26d605d6d53a85d561fdd6c72e9f5180815f7027eb3e97049690b4846451b2a2 +size 12185336 diff --git a/sessions/2D392E/assets/overlay/Real Particles Of Dust - Free HD Vfx Footage.mp4 b/sessions/2D392E/assets/overlay/Real Particles Of Dust - Free HD Vfx Footage.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..cedfbf3fb4298d6451414f6912421fa148cfa812 --- /dev/null +++ b/sessions/2D392E/assets/overlay/Real Particles Of Dust - Free HD Vfx Footage.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:563d809e425499a0fbda1f673f740546e771e23b1a13ed4b036e440628eb0503 +size 4445762 diff --git a/sessions/2D392E/assets/overlay/Science Particles Overlay Full HD 4K Quality [CC0].mp4 b/sessions/2D392E/assets/overlay/Science Particles Overlay Full HD 4K Quality [CC0].mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5b229c03944ecfb075611d790cefd67611af70b0 --- /dev/null +++ b/sessions/2D392E/assets/overlay/Science Particles Overlay Full HD 4K Quality [CC0].mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0b48cb29117a03e9f783164f29484bbe8cd88cddef4aff21e8551658098aeeb +size 4924589 diff --git a/sessions/2D392E/assets/overlay/Yellow Flower Falling Petals [1080P].mp4 b/sessions/2D392E/assets/overlay/Yellow Flower Falling Petals [1080P].mp4 new file mode 100644 index 0000000000000000000000000000000000000000..96cf8efcbf7675bc6400308a7472b817e6095a61 --- /dev/null +++ b/sessions/2D392E/assets/overlay/Yellow Flower Falling Petals [1080P].mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4cf88a582eaaadb421e14493ffabf59c96fc178c63ea59e9538fc177fe775e1 +size 27219154 diff --git a/sessions/2D392E/assets/overlay/stars background video effects overlay.mp4 b/sessions/2D392E/assets/overlay/stars background video effects overlay.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d4d666519405c9110a23a485749ad511ef69f63f --- /dev/null +++ b/sessions/2D392E/assets/overlay/stars background video effects overlay.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18eb136091c98f72b0915af92ffb8b4b3c9ec4ce4013c2b36f99510fb4436e35 +size 8714022 diff --git a/sessions/2D392E/assets/overlay/y2mate.com - Black screen star effect_360p.mp4 b/sessions/2D392E/assets/overlay/y2mate.com - Black screen star effect_360p.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e51047b5392b36b581f4eaa59c2fc79d074d2e81 --- /dev/null +++ b/sessions/2D392E/assets/overlay/y2mate.com - Black screen star effect_360p.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a088a65f4a2e3a1bcffa35ebb1a57fed080550c4576dbc2180b7d1386d4f438e +size 537233 diff --git a/sessions/2D392E/assets/overlay/y2mate.com - cartoon snowflakes falling big free HD overlay footage_1080p.mp4 b/sessions/2D392E/assets/overlay/y2mate.com - cartoon snowflakes falling big free HD overlay footage_1080p.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fe3731c4ee9b55feeb529d41d35f1ce28eea4ec4 --- /dev/null +++ b/sessions/2D392E/assets/overlay/y2mate.com - cartoon snowflakes falling big free HD overlay footage_1080p.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25caf19e31ac34a7cbaba5efecb28fb776e4b8ba810e25976bb622b752cb1dec +size 5365307 diff --git a/sessions/2D392E/audio/258_Cartas de Abuelas.mp3 b/sessions/2D392E/audio/258_Cartas de Abuelas.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ffff5de8023a511096523ca7fe7e8ce471f60991 --- /dev/null +++ b/sessions/2D392E/audio/258_Cartas de Abuelas.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:507d8a6a9dd23c2b6f6e7e2f8eb0c61b4d50326599bcc3bdd756683302d62050 +size 165338111 diff --git a/sessions/2D392E/audio/265_Cartas de Abuelas.mp3 b/sessions/2D392E/audio/265_Cartas de Abuelas.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c4ce84de293c038a30c404fa0637c62a0868c275 --- /dev/null +++ b/sessions/2D392E/audio/265_Cartas de Abuelas.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8420576d8c7af645b9d46781fc0fc434ba683871d7fe7f2f38c741155232d7a7 +size 162851254 diff --git a/sessions/2D392E/audio/266_Cartas de Abuelas.mp3 b/sessions/2D392E/audio/266_Cartas de Abuelas.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..8b0a0eb8c8651fc10ce80b11b5abc87023028cee --- /dev/null +++ b/sessions/2D392E/audio/266_Cartas de Abuelas.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb8208ad9e5185b99025f1877656e9ffbc41f74f365be8025b1a51fb41e63421 +size 141183414 diff --git a/sessions/2D392E/audio/269_Cartas de Abuelas.mp3 b/sessions/2D392E/audio/269_Cartas de Abuelas.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..6528ebdf4ab7f74a850546b1c83a3e022b9efcb4 --- /dev/null +++ b/sessions/2D392E/audio/269_Cartas de Abuelas.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17bae0712db88f7ed8c001bab69df887521c252ed06956268e90bf7f395dd93a +size 154311512 diff --git a/sessions/2D392E/audio/274_Cartas de Abuelas.mp3 b/sessions/2D392E/audio/274_Cartas de Abuelas.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9a03d5e4e2c3637d0cbee0f8c74249f7861d982d --- /dev/null +++ b/sessions/2D392E/audio/274_Cartas de Abuelas.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:338adca5dfe0e566bb5b26d5c3eec15ec3567d0202890047e5771bacd09951dd +size 166209138 diff --git a/sessions/2D392E/audio/291_Cartas de Abuelas.mp3 b/sessions/2D392E/audio/291_Cartas de Abuelas.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..22dfe0d9b0f0d7a520e05134b39bb9691bee9fe9 --- /dev/null +++ b/sessions/2D392E/audio/291_Cartas de Abuelas.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9710fca263ae01f00eae586134fe6d2ee10c6c850009604c2c59a65371d619e +size 153467653 diff --git a/sessions/2D392E/audio/292_Cartas de Abuelas.mp3 b/sessions/2D392E/audio/292_Cartas de Abuelas.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..0553a57b688c360feb834550bed13da0b153b2c7 --- /dev/null +++ b/sessions/2D392E/audio/292_Cartas de Abuelas.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34c107bcdc2f4b7e3ad1bda893c6518b1c24a23a7ab491f60d4f4a739cd7b26e +size 144697615 diff --git a/sessions/2D392E/audio/295_Cartas de Abuelas.mp3 b/sessions/2D392E/audio/295_Cartas de Abuelas.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..1b80ee391167496fbb55b0ef566c1aa685aa3219 --- /dev/null +++ b/sessions/2D392E/audio/295_Cartas de Abuelas.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db60f28f66c83818dfbf504038fdf6537a305792e4c62681a5201c10c7cadc9d +size 152521811 diff --git a/sessions/2D392E/audio/299_Cartas de Abuelas.mp3 b/sessions/2D392E/audio/299_Cartas de Abuelas.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..89ca14af935fbead5d59d380801dce990b36d488 --- /dev/null +++ b/sessions/2D392E/audio/299_Cartas de Abuelas.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa3e03f7bc920b543ebc1963fb1d19d0d5242ad47a8f0c3b919b3af86d197469 +size 143441230 diff --git a/sessions/2D392E/audio/306_Cartas de Abuelas.mp3 b/sessions/2D392E/audio/306_Cartas de Abuelas.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ebafd38dbc3038890ba0617f8724c3e5c56aa006 --- /dev/null +++ b/sessions/2D392E/audio/306_Cartas de Abuelas.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e850498f5452a0cee67edca7422fb04b13a0f88466e20dbf85b6bdfa97bf1079 +size 153048439 diff --git a/sessions/2D392E/audio/311_Cartas de Abuelas.mp3 b/sessions/2D392E/audio/311_Cartas de Abuelas.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..f6987e78eb390aefa0e29a3a0a2f11336d298a17 --- /dev/null +++ b/sessions/2D392E/audio/311_Cartas de Abuelas.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0d1d3aefa6bda39ba274c84efe1867ec857195ddeae4f4fa1a62b556f0ba5b6 +size 157406082 diff --git a/sessions/2D392E/audio/327_Cartas de Abuelas.mp3 b/sessions/2D392E/audio/327_Cartas de Abuelas.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..9e060e7805bd6ce18b630d841bf2b004d772214c --- /dev/null +++ b/sessions/2D392E/audio/327_Cartas de Abuelas.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:848ef61dde3e0b6f4fb4f2baad170aa641228477227657fd5aca6aa30b6e5e55 +size 142250046 diff --git a/sessions/2D392E/audio/332_Cartas de Abuelas.mp3 b/sessions/2D392E/audio/332_Cartas de Abuelas.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..b550e73b0e87da6248327e2659f37607cea81bf3 --- /dev/null +++ b/sessions/2D392E/audio/332_Cartas de Abuelas.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07106bd7826ad5183240bdcb5e4b84fd1493555394c11c327f055cbe8d18abb0 +size 149282209 diff --git a/sessions/2D392E/audio/333_Cartas de Abuelas.mp3 b/sessions/2D392E/audio/333_Cartas de Abuelas.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ce300749f3fac6d192c56ab01a7029aa3f19ef11 --- /dev/null +++ b/sessions/2D392E/audio/333_Cartas de Abuelas.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c78541dac0882556fa02ff6cc5aad0a1f2ceec6182c851845b5ef897af4ae0c +size 138802301 diff --git a/sessions/2D392E/audio/347_Cartas de Abuelas.mp3 b/sessions/2D392E/audio/347_Cartas de Abuelas.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..786da33b1714bc1c4bb4bd0a47dfaa296753daa1 --- /dev/null +++ b/sessions/2D392E/audio/347_Cartas de Abuelas.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76f7e421fcc0f9f308182c12aa3d596730d060884a020cc61bc2ab91673b6b47 +size 145974480 diff --git a/sessions/2D392E/audio/348_Cartas de Abuelas.mp3 b/sessions/2D392E/audio/348_Cartas de Abuelas.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..2f199f84e922392a726777ee356c6fc2410083d7 --- /dev/null +++ b/sessions/2D392E/audio/348_Cartas de Abuelas.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5be990eb8e26daf440530603cadc5f58d440be6c29441551fe6324bdd595d57 +size 144277148 diff --git a/sessions/2D392E/audio/422_Secretos de Abuela.mp3 b/sessions/2D392E/audio/422_Secretos de Abuela.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..7835ff678579916dc72ff9c1bf53d210ec0ba3c4 --- /dev/null +++ b/sessions/2D392E/audio/422_Secretos de Abuela.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5d6a3c1b012608a86a8b1b5a437c35f31b2e3e60d5d170717b4b6b3ebfcc218 +size 139017968 diff --git a/sessions/2D392E/audio/426_Secretos de Abuela.mp3 b/sessions/2D392E/audio/426_Secretos de Abuela.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..ba06b0c30e2624f7684cd63a5286590200adb07c --- /dev/null +++ b/sessions/2D392E/audio/426_Secretos de Abuela.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3054c870b5a24928b1446d240d245378e4e50f4100c46f401939dd6c4fae1dde +size 138129386 diff --git a/sessions/2D392E/audio/437_Secretos de Abuela.mp3 b/sessions/2D392E/audio/437_Secretos de Abuela.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..e0ecd3e0488a022bf990483052a8447f9b08e2de --- /dev/null +++ b/sessions/2D392E/audio/437_Secretos de Abuela.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8658c9c082989d92dd379613e0ca5793ee5a17d70c6b36b7af2dd8b6915df057 +size 168335715 diff --git a/sessions/2D392E/audio/438_Secretos de Abuela.mp3 b/sessions/2D392E/audio/438_Secretos de Abuela.mp3 new file mode 100644 index 0000000000000000000000000000000000000000..c9034d484cfb94295a71a2876ffc4377144134b2 --- /dev/null +++ b/sessions/2D392E/audio/438_Secretos de Abuela.mp3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d57e5893a011d28918a746f5b7da06c0cd8f2bf5e7e3ca8fe724a5b9e1ee07e +size 150733364 diff --git "a/sessions/2D392E/image/\341\272\243nh/258_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/258_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..96149abe676b3ff00afc92a6a43150f0809c1884 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/258_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c48cd5d98484d0e855f007b4881ebe7fad6983eeea25826e57dbb0fd51c697f +size 720924 diff --git "a/sessions/2D392E/image/\341\272\243nh/258_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/258_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..4232d8eab758f3d2d4da84200a12a07c9b33cf47 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/258_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ddeeee20b54073389f92bd5eb1083a2b0b771d0fd76506dddfaea139ace870a +size 670158 diff --git "a/sessions/2D392E/image/\341\272\243nh/258_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/258_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..2852b71b487b8d54a04b9a919f2c5b597d541547 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/258_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:448439f75154c48eed479a44019ca5ae1668e5a3852e0f8fe1fd4c965f947e9a +size 641008 diff --git "a/sessions/2D392E/image/\341\272\243nh/258_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/258_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..60bda889ce4337f1bb455d6f89393cd085b9d7c7 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/258_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af00fdebdb5e2b654bf536319cbf73662168b3cc37a04623adb428c08ae66004 +size 727369 diff --git "a/sessions/2D392E/image/\341\272\243nh/265_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/265_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..71870970a56101cb7c69edc5c78bb7771e930af1 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/265_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fcb3ae6c68c0489f143889e7a22016f6ebea04e4b25d2b0e632b84d41d3d310 +size 697491 diff --git "a/sessions/2D392E/image/\341\272\243nh/265_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/265_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..94fcd50687b78fb8971d5872f972da8e8c08747a --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/265_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c33df0f57d1a959fced7b07ba8b1bc0f985d926644deb5401a96520d5cd72f4 +size 669888 diff --git "a/sessions/2D392E/image/\341\272\243nh/265_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/265_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..79c936b9a416e6f158a601ce9cfebfd41732b861 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/265_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6db5a35d8979a6456180b6be2e3d3ead3af0627655fa3d01f41ef3779399898b +size 692848 diff --git "a/sessions/2D392E/image/\341\272\243nh/265_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/265_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..0801983d4f73256708fb6c633cd66a932d04e315 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/265_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5184bad2fb67aa5c4f2f117625b7f995131bdd0b3517b1abe61c181882c5641c +size 714877 diff --git "a/sessions/2D392E/image/\341\272\243nh/266_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/266_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..29a70e3f195f6e0c1fd2dc0b4e8fc7b6560bd0b3 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/266_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c68a439f2772141848f692c489e3e1e2579740bd58efac805dff31b184854b67 +size 628419 diff --git "a/sessions/2D392E/image/\341\272\243nh/266_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/266_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..69bfc1afc5ad7dc4c9c5b2d206f5dad0a79f1f54 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/266_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13e15a5acdddf861ea718963c3634fc7b99d3be92c16d310ce21de5c1a26439b +size 645566 diff --git "a/sessions/2D392E/image/\341\272\243nh/266_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/266_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..7c30a288b08bb0d25b0d3b371f0441486cb12e71 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/266_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db4571f43ca06b74b212229ac7bcd977fa7565c3955a8b693d69f4a387cdd0e0 +size 611896 diff --git "a/sessions/2D392E/image/\341\272\243nh/266_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/266_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..ec1eec012beba16188ca2e2839d9ea643ce64cf5 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/266_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bbba24e93269212fe4bc40bec4b4463150bbac1bd49486a5092f1f14a1ce262 +size 634588 diff --git "a/sessions/2D392E/image/\341\272\243nh/269_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/269_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..d8516360e02e1958dbc9a82b975a5ad4b6df323c --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/269_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4927a6ed270bb5481893d520daf81bec9f8cf9ad6bba249da49879efe44f00e8 +size 733534 diff --git "a/sessions/2D392E/image/\341\272\243nh/269_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/269_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..9e0a49dbc01c91289819a7b770c91abd02f17c03 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/269_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:973539e0084c025e29abb6398eb5376204ee4e89edafe2ff4066d9151d825128 +size 711147 diff --git "a/sessions/2D392E/image/\341\272\243nh/269_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/269_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..ab0a5a01e8cd676aae7108bfd9ac596d14320f88 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/269_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91a1dfa45b3ee97e5945bfebdfb6fe2d82481537d9ba4bd8d3306bf916885f69 +size 703209 diff --git "a/sessions/2D392E/image/\341\272\243nh/269_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/269_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..a3e33951bea3e799073725e9353e4beb8dfe102a --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/269_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f46b832995104e495672b8aef2b2b2252fa77e6c54a5d2cd0ecb85f387116bb +size 745887 diff --git "a/sessions/2D392E/image/\341\272\243nh/274_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/274_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..6f3b8e1e55f511c44a7b09c0a4b9ada8b135a5a5 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/274_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ead104eb48ed3e2d89e727048005f606f158b2bd8e856f16a57cd5523c14a6a +size 723459 diff --git "a/sessions/2D392E/image/\341\272\243nh/274_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/274_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..980de262c3b3f65ed82867aba64df5225706b726 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/274_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d76a87dc3c5f89e8e23c36da977a4e0e5afa8879fa9a7c86bfdf70bd385d5ad9 +size 700704 diff --git "a/sessions/2D392E/image/\341\272\243nh/274_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/274_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..0bdc3447e5ca5772126eea06eca06f3f30a3a0ad --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/274_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb2070d796bf52af1951a8ce75003f4edab66e7aa6080f3fc3dc66c48517077 +size 677500 diff --git "a/sessions/2D392E/image/\341\272\243nh/274_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/274_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..dab7b8dfbe1bd7048d23f6090fd208d077f44d61 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/274_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:983b1b99e186608acfd9a76436f7f4af09949ab1239b2d2617ec7aa2398cc280 +size 714600 diff --git "a/sessions/2D392E/image/\341\272\243nh/291_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/291_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..7b490b14776c3b7955162aa86163eb93130e6ca4 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/291_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fff1d2ac91f1e9f465c721a01e947c88d381462ab4e436d8008a01b31cd3d9ec +size 683096 diff --git "a/sessions/2D392E/image/\341\272\243nh/291_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/291_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..ce9eba97be331f0acbea820504446eee0dad6e42 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/291_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:054ebb610541385128db7746d25560824eca081a58052d09d2ad10e680c42c15 +size 698580 diff --git "a/sessions/2D392E/image/\341\272\243nh/291_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/291_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..20e4bb5e24f1175425c6c11d99cb3930e3a0d2b6 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/291_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af5ebdee8383832ba3ddc34172802afb80d087edf1fd034fefbddbdeeb34099a +size 716846 diff --git "a/sessions/2D392E/image/\341\272\243nh/291_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/291_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..e835dc9013708d2f725e159acd11f7e1ce694469 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/291_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f25644f20cea9ae365cfb450062bd7d328150186d05812fbfd693aad4f59a0d7 +size 753287 diff --git "a/sessions/2D392E/image/\341\272\243nh/292_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/292_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..593d489b65ad07fe95b9f05485ab68148f533855 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/292_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf7232b8832c7fedd8316c8377885a5f33e7b164709c8450c6283306bf9d3797 +size 709258 diff --git "a/sessions/2D392E/image/\341\272\243nh/292_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/292_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..84fd895b7a66bc267e6eeff607c50d792c96fcd7 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/292_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26d518952e8b37659bc12ea162b8063873891657a61380ac7cce1fb80ad0bfe6 +size 741880 diff --git "a/sessions/2D392E/image/\341\272\243nh/292_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/292_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..0ccab33ff5f64396641e0d676dbc05939cb8788e --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/292_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9e48851ff53a5682176850e166a931feff455c601a1ba4d02896902916c079c +size 726061 diff --git "a/sessions/2D392E/image/\341\272\243nh/292_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/292_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..391491763ed5524098a6dcb465aecea151a81bc1 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/292_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6b1517f13dc8da7efabb006205e36c19361a28393216dce63700eefbfbb439c +size 728276 diff --git "a/sessions/2D392E/image/\341\272\243nh/295_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/295_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..15fbf3b2532e8606b39149f53f47040df5226c99 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/295_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48baf3356b7d34caa4e4013b14aba921cc0507a661881927f90025105d1883be +size 734504 diff --git "a/sessions/2D392E/image/\341\272\243nh/295_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/295_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..a4ecf43305a04a9bfede12b9e6506c7475e05bf5 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/295_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0be2f29f7dad8a8dd4ce2079b72d5f50ea23ea9a6bae11b73dc029f16c963f8b +size 730525 diff --git "a/sessions/2D392E/image/\341\272\243nh/295_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/295_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..3783db96a1f9d85e7bd041774c5a256013bc8ded --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/295_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a9d83c255129001a0a017b6fc9a7ae20761f5317ac7b1d494debfba099912d5 +size 730076 diff --git "a/sessions/2D392E/image/\341\272\243nh/295_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/295_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..9a8186504851eb3614838a560cfa4ebc6830daa0 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/295_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a70a9087ba302ec33ba581d421d491b35e83d97a97e7712391cdda12f1e9907 +size 736175 diff --git "a/sessions/2D392E/image/\341\272\243nh/299_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/299_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..89f6e9bc45c249c273963560f7a6ae86eb77e48f --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/299_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b4d547992e84bafe1b00cde38f8b099b53fc8af209d7d256488c829ae0b3ad2 +size 720898 diff --git "a/sessions/2D392E/image/\341\272\243nh/299_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/299_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..fa39c07a60eca90206b83733e1984ebccf569005 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/299_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21010fedc254dda34bb6cbd99daa00e29bb95baf070320d587069df62ab05815 +size 714045 diff --git "a/sessions/2D392E/image/\341\272\243nh/299_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/299_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..8e5a4df51497ad041467ab45d1464b3fd615cd44 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/299_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:309ef0010bc24c5bc52e871e911700a5b26332a2ab90ffd13304ebe4325f758d +size 701340 diff --git "a/sessions/2D392E/image/\341\272\243nh/299_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/299_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..e9e52526608ad1f1cea5de15e6b075bf797b8b89 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/299_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:535fed4c4862be0b8855e25a0fa39e891f5dd7173a7925ce3cc62e8d91b4372f +size 685006 diff --git "a/sessions/2D392E/image/\341\272\243nh/306_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/306_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..5a7e9afd36c8e4ac5de9ed8cafdd81c0c0a123bf --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/306_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c16ce6fe8f95694cf844458ceac88bcd1baec00c73fc1517b394b2f440c42ae +size 857555 diff --git "a/sessions/2D392E/image/\341\272\243nh/306_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/306_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..eaaee043ceeb88d82a15e6084a81f6cadc5fafba --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/306_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ab29f06107e24c83200ed66acff0be7bcea6bdd9df1c74e83712aca10da438b +size 875227 diff --git "a/sessions/2D392E/image/\341\272\243nh/306_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/306_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..3be88a8ee554bdef1f1fb9002e3c45b15e308cd7 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/306_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7392642275a8362277b07c09dfe0b13d4e0fcd4dae360c14b93c32ccbf958f1 +size 803104 diff --git "a/sessions/2D392E/image/\341\272\243nh/306_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/306_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..06af373d5b872b26dcd944ea50a9272a8caa5a4e --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/306_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9108c6a76113ce3deb7d0a0c0c8d11fa0fbe7271779f4275dc351375f505c12f +size 792423 diff --git "a/sessions/2D392E/image/\341\272\243nh/311_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/311_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..14e21d4c03c9139b979cc8e1e9b28782a1967a7d --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/311_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d36254ef668b2d3598286d8eaafeda00eba1d9c3b4d16a8fc8797b44fc8b4f96 +size 887161 diff --git "a/sessions/2D392E/image/\341\272\243nh/311_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/311_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..ea1a86fe41ef57d82acc41b9e00f2ddb91e5ae30 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/311_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e6932cec30d661b855a7a514514f9006523a0f474b03dfd6027b1e512ffec11 +size 822016 diff --git "a/sessions/2D392E/image/\341\272\243nh/311_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/311_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..cc990584b8c564927bda72f64492918c4cb3953b --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/311_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa5ebf394ca1c3c214c672bea14ca800c6d8a6c38e4de716a1d5e51c1a6afcc4 +size 852487 diff --git "a/sessions/2D392E/image/\341\272\243nh/311_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/311_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..844b49f5e17d95b9d33867ea533a52fc5b16cf2b --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/311_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0665c2de1a4004288ebb9544bf9b649f77090f4f762b3df272c31fc4134fa7b6 +size 868878 diff --git "a/sessions/2D392E/image/\341\272\243nh/322_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/322_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..c3ddbe8acf3023659f13887f452b8147f88ae0af --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/322_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8df55c4a155ffb6fc02475af4a311c9f13380f29c9dde9ad48ddaa0c2e1f96b9 +size 809318 diff --git "a/sessions/2D392E/image/\341\272\243nh/322_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/322_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..a6536035ef0f81b4b9ba990c1707fdeb16ac298b --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/322_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c92b223f1615d0dc000c48138e385b31b1d5ff609a54997ea56ac38a07075396 +size 844587 diff --git "a/sessions/2D392E/image/\341\272\243nh/322_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/322_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..54de4425180507fc62d3c600482398622cd6f3b0 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/322_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:626739261c87e6cd35b91bf0ff82173192b8209210938507e6b23b5a838f2bd4 +size 820110 diff --git "a/sessions/2D392E/image/\341\272\243nh/322_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/322_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..98841f02bf6a6ae36bd3faffd4c279121c354fd7 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/322_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f29573e80849f9b967cef81b702330fb01fffc5a2152a392710dbc72b30e9b60 +size 795722 diff --git "a/sessions/2D392E/image/\341\272\243nh/327_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/327_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..3aa921ba9e24ee3c7924b15a5895c63e8cdaf510 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/327_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2fef127e20aca4bdfab587ad513c4697e3d98a5857f0357623d9f620e10fae9 +size 678060 diff --git "a/sessions/2D392E/image/\341\272\243nh/327_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/327_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..be259eba6a460a34ffe07aae4faad8ba90de62da --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/327_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:940ea8374776d5df15a181b51df0cdd59024653cd6f07bb8b019adf2dfbb9ade +size 699819 diff --git "a/sessions/2D392E/image/\341\272\243nh/327_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/327_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..7732a814be3b19d86b01aa4a24f32b3fcca748e4 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/327_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2265421dd9e4232c180d31cee96b0cc9347a66f38c7c35582d851fe5e14a842b +size 681813 diff --git "a/sessions/2D392E/image/\341\272\243nh/327_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/327_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..93a63bd8c25729b39f621e44bd39f3f7251fe89c --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/327_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a87556cb9c6ae437e2a4937f84f37f3dedc8c7c63edea769710d0e4e09944d +size 679057 diff --git "a/sessions/2D392E/image/\341\272\243nh/333_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/333_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..8a3f3f3bf1860e15ebaa39bbfa4b8d1f807c8ebc --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/333_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04b56ab56359f04b2ab2eaa2e555d7d410f8ffcb91ab020d68592e15f3a3a6b6 +size 744153 diff --git "a/sessions/2D392E/image/\341\272\243nh/333_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/333_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..055299fb2c3ae37ae991eddda6e79f41b5deba4e --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/333_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8560b5306310a764caed4c930e57d29b5d6c8f72f6c543d9a44dfafe714feccf +size 737840 diff --git "a/sessions/2D392E/image/\341\272\243nh/333_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/333_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..0311829d90433b15fd2054ae673a54936dd5d2e8 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/333_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:367e5bab51f87f86f08f377155b23fa6968511a931b617ce8b9f1013e2030e6c +size 739960 diff --git "a/sessions/2D392E/image/\341\272\243nh/333_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/333_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..37ceda5988c8a4de44c336063584d557a465514e --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/333_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d75b8dc3ab776a0aea9c1cf5c6d541694454bff50d71eee8b7f3e25e753ecd3 +size 717685 diff --git "a/sessions/2D392E/image/\341\272\243nh/347_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/347_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..9f028881f6af97fbcf6955732bfd09438788421e --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/347_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39e8b90d2bd2e9d879555300e09f162f200db9025a3bc724e7625f18e1020b93 +size 772937 diff --git "a/sessions/2D392E/image/\341\272\243nh/347_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/347_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..6a63028499c6acd14c4d9a40aea250566e71b287 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/347_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b9baca3ed137b47e999b630c33bfd10450bac52408f112b5f877ad67656300d +size 824226 diff --git "a/sessions/2D392E/image/\341\272\243nh/347_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/347_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..e1c9347b233e1e785aaa3198b32fde00270ec16e --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/347_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de4e9543c400f3fa94e7fb4f70cbac025b7dd8397272454cd0b4725ac59b05c +size 778839 diff --git "a/sessions/2D392E/image/\341\272\243nh/347_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/347_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..0237f56523a788255e1309e4a7297098abdb5551 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/347_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de9468d00d365e25621e6adb8f6752c2e91719c3571852d4dd42f63ae175ac36 +size 733736 diff --git "a/sessions/2D392E/image/\341\272\243nh/348_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/348_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..925accaaa65805e5be13af4734fb2953f57cacf4 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/348_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89d584488450f4771009472b428a6ccf4fd23f4b4487e9a6f86ab964cb870c90 +size 731330 diff --git "a/sessions/2D392E/image/\341\272\243nh/348_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/348_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..faa83b07535c95481dfe63d809802ad36d37d0aa --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/348_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73412de85041a77a5ad449ef33a4778ce98f49477094c6e37826127543d450f4 +size 742690 diff --git "a/sessions/2D392E/image/\341\272\243nh/348_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/348_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..bc65f98d3f5733263e9eb9c64bb7cc1b31000e72 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/348_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a78a3d2a37fb99b3cde4109f1e2f155bc24ade7c9eca986740bfcf1eeaa584c8 +size 715943 diff --git "a/sessions/2D392E/image/\341\272\243nh/348_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/348_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..7fd76ce0b472eaf3010a9f92bdce6ce72f0b4b87 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/348_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c518fa750f12d49bd037b14b520b276637ddb196f643c8501fea09b27bdf6f5 +size 701414 diff --git "a/sessions/2D392E/image/\341\272\243nh/422_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/422_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..ab0c7e6863d72f2f942c3eb9c931d81209c5363a --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/422_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:123784b290d001301a1458e848c58b124c7ca99b753bcba5613beceeb4f49a33 +size 682698 diff --git "a/sessions/2D392E/image/\341\272\243nh/422_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/422_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..7214aebfebea9df84ce3ae675bb41f342f13cb9c --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/422_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:664f9bf656d524d84fe1a9721be5729db96e71fffc78d73b35742fc0d8640ad3 +size 642699 diff --git "a/sessions/2D392E/image/\341\272\243nh/422_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/422_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..b0a1276dfed92d4e39f62a2f23e3fef51de47084 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/422_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4baf1c28fe6cb7a30b77210e1364b750d38e11d975bfc1d1bcae4c554e86f64 +size 634684 diff --git "a/sessions/2D392E/image/\341\272\243nh/422_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/422_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..571392adbc733ff6b5343fd8ffb99da2760ccc08 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/422_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:040e19434bc08014f5edda166be9c8980c9dc07461db5f09f7e253da34d6111e +size 632087 diff --git "a/sessions/2D392E/image/\341\272\243nh/426_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/426_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..d59f389c6c7516e6990ebe1ed4c491025a9c10b6 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/426_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8326906d48ca1896108c31e5b9e2ef4999d92b7e5a1f9e2ba50edd364352c383 +size 724161 diff --git "a/sessions/2D392E/image/\341\272\243nh/426_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/426_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..426ef9dc9ffa55122e3d2a6b3d1882f0e033085b --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/426_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42b9089ade4ad37dcb46d1b1a3ef292a5f21f7d708505e754cce300bde0e5542 +size 717842 diff --git "a/sessions/2D392E/image/\341\272\243nh/426_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/426_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..8c07c1553b6c61a7d9a83bbc46dfec79ba7d105b --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/426_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df6ba28e9bd97286266c33a9aa190830d555a694fbd61bfc759789f2a258b5a5 +size 725753 diff --git "a/sessions/2D392E/image/\341\272\243nh/426_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/426_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..738ee210bb33b6edbdb4c848e3d63c844b22fe97 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/426_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28ee895cd5943832378b81761c9e23f8391ee35ba274ebd196a8f7e21731faff +size 732422 diff --git "a/sessions/2D392E/image/\341\272\243nh/437_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/437_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..a32f4461148214ef0e448ce32e81b6bc7230a42b --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/437_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ae263cfe5b56525952a4744815f9e5017bb44bc4f9003bd3ded75f732c24ef7 +size 696006 diff --git "a/sessions/2D392E/image/\341\272\243nh/437_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/437_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..a590e31d77432978c78d81106ae0e045633b15ac --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/437_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29364e2eaa800efffd256429dea27304b91474e08bf3989c95c6244c0eecc49a +size 621261 diff --git "a/sessions/2D392E/image/\341\272\243nh/437_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/437_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..cb1abe38bf0b5c0cbd2ba99124b3b455ee6cffef --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/437_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:199216c92ba09f3afdfc84c788612cf23fc9962342aaf5e24d1a1922359e5c36 +size 687807 diff --git "a/sessions/2D392E/image/\341\272\243nh/437_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/437_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..5a887d46a3abab7e1c44bb681de51dd6ff4ac8f4 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/437_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f599d43c57770c4f07b02a05d025580f27dce55275fb2e5fe52cc8f5a5c7414 +size 707108 diff --git "a/sessions/2D392E/image/\341\272\243nh/438_1.jpeg" "b/sessions/2D392E/image/\341\272\243nh/438_1.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..b5f99012e1831735e577da56a7ee4cdee65bb414 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/438_1.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6720b3b773b57f9c67f6d4c5a1a73f75764904374578b6a33d3ae1914c93091 +size 646607 diff --git "a/sessions/2D392E/image/\341\272\243nh/438_2.jpeg" "b/sessions/2D392E/image/\341\272\243nh/438_2.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..fc64bececb39195d7408a08cbc7b40d05827bc31 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/438_2.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de4263bcbd78b47aeacd1e2634c904fcc19ca651f6878e905a07894396f4210 +size 629625 diff --git "a/sessions/2D392E/image/\341\272\243nh/438_3.jpeg" "b/sessions/2D392E/image/\341\272\243nh/438_3.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..00977326e336eeb7b4af3ff65259fefaba45d41d --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/438_3.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8854b6cd1211b3c2479367d94878403730ae03d9f02df706d533cbb48abe9dc1 +size 697069 diff --git "a/sessions/2D392E/image/\341\272\243nh/438_4.jpeg" "b/sessions/2D392E/image/\341\272\243nh/438_4.jpeg" new file mode 100644 index 0000000000000000000000000000000000000000..66e47d530cdf4e4fa4761068922d30a059724403 --- /dev/null +++ "b/sessions/2D392E/image/\341\272\243nh/438_4.jpeg" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7718df7043988b15c7680dfef7150329029ec244e91685bb4fecb513f35908a4 +size 602560 diff --git "a/sessions/2D392E/image/\341\272\243nh/Thumbs.db" "b/sessions/2D392E/image/\341\272\243nh/Thumbs.db" new file mode 100644 index 0000000000000000000000000000000000000000..6789d22777f402140d1a1e9dc0e92f85ca973ce8 Binary files /dev/null and "b/sessions/2D392E/image/\341\272\243nh/Thumbs.db" differ diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0001.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0001.json" new file mode 100644 index 0000000000000000000000000000000000000000..69f1c3aa51bddfc7a4c4a76788a751667677069e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0001.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 9, + 16 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0002.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0002.json" new file mode 100644 index 0000000000000000000000000000000000000000..78951433dfed82af18438e09f69a9b1d669375b8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0002.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 56, + 83 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0003.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0003.json" new file mode 100644 index 0000000000000000000000000000000000000000..33a68c30da5b3e58087f2dfcca096d43462121a5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0003.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 37, + 80 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0004.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0004.json" new file mode 100644 index 0000000000000000000000000000000000000000..8e0cde82b9a6570b18227b1739a910fa315ba53a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0004.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 11, + 74 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0005.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0005.json" new file mode 100644 index 0000000000000000000000000000000000000000..c0f1d1516a4351afc26dae6ad57d57e427c0599f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0005.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 62, + 25 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0006.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0006.json" new file mode 100644 index 0000000000000000000000000000000000000000..9da02cb5d78afd48b099d220c1c396463cca2f5f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0006.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 74, + 57 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0007.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0007.json" new file mode 100644 index 0000000000000000000000000000000000000000..d56c10eb151735f9516b52c7ab55746edc7653d4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0007.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 95, + 72 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0008.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0008.json" new file mode 100644 index 0000000000000000000000000000000000000000..10fed33225ffcacbfebbe25dd8cbc7a7799d1db3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0008.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 6, + 9 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0009.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0009.json" new file mode 100644 index 0000000000000000000000000000000000000000..4235147b0853a5fd714b0a053a2fde01d7b91f3f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0009.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 25, + 47 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0010.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0010.json" new file mode 100644 index 0000000000000000000000000000000000000000..c4154a451d02c2d4fec586038794ff4dad51600a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0010.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 93, + 84 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0011.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0011.json" new file mode 100644 index 0000000000000000000000000000000000000000..24005dae21809c8a79893aa4d2d578a118b06b2e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0011.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 1, + 48 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0012.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0012.json" new file mode 100644 index 0000000000000000000000000000000000000000..7a8148a43ac21698fe4d7a51ad94899611d53b4b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0012.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 83, + 8 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0013.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0013.json" new file mode 100644 index 0000000000000000000000000000000000000000..552decdcf8a61f23c0c7658f24f6a385a3635469 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0013.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 48, + 69 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0014.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0014.json" new file mode 100644 index 0000000000000000000000000000000000000000..562bcf4cef2681c66e9a2b4bbee551b6ed6afb57 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0014.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 23, + 95 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0015.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0015.json" new file mode 100644 index 0000000000000000000000000000000000000000..2a4d270aa444f5ee114ae1b4edbeca428b12c312 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0015.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 0, + 72 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0016.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0016.json" new file mode 100644 index 0000000000000000000000000000000000000000..e4629be05cd017559b8ae55e6be0cd97099bd6d9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0016.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 72, + 13 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0017.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0017.json" new file mode 100644 index 0000000000000000000000000000000000000000..4eb2eb77e96cb6f0509728112d0f920db45bb843 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0017.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 35, + 75 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0018.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0018.json" new file mode 100644 index 0000000000000000000000000000000000000000..6a835872cad51ab3484a8e7f77080c226e1778a5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0018.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 97, + 74 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0019.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0019.json" new file mode 100644 index 0000000000000000000000000000000000000000..a056063e53c4eea38dda140fcf7bd2eadd419147 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0019.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 95, + 54 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0020.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0020.json" new file mode 100644 index 0000000000000000000000000000000000000000..bad6d41f046c8e17abc99dd2a436c5be7e0df48a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0020.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 49, + 35 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0021.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0021.json" new file mode 100644 index 0000000000000000000000000000000000000000..86e2473b8f2f8b3550e840af433aa38eb6002abf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0021.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 66, + 19 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0022.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0022.json" new file mode 100644 index 0000000000000000000000000000000000000000..ab7336b1d66fa98c46472a48e9a01cf29449578e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0022.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 62, + 6 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0023.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0023.json" new file mode 100644 index 0000000000000000000000000000000000000000..60880e73b1ad734e4710b74ad4e24550c900ac9c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0023.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 45, + 46 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0024.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0024.json" new file mode 100644 index 0000000000000000000000000000000000000000..0e153f5789149b4c00feaa49972ce2a2e61948c4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0024.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 36, + 51 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0025.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0025.json" new file mode 100644 index 0000000000000000000000000000000000000000..6a49b4fcdddc0181652af4fdb881fa7821ad7c4d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0025.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 92, + 84 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0026.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0026.json" new file mode 100644 index 0000000000000000000000000000000000000000..c42d95bc46b0fc9d62b507122fd9b1b705b15976 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0026.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 37, + 97 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0027.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0027.json" new file mode 100644 index 0000000000000000000000000000000000000000..7e0045aa7b8b82e6553a52be692bfba0c6df383c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0027.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 46, + 15 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0028.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0028.json" new file mode 100644 index 0000000000000000000000000000000000000000..dba3166c44948e428614ecc4c306e602da7b6157 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0028.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 4, + 77 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0029.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0029.json" new file mode 100644 index 0000000000000000000000000000000000000000..5706c7fef2292b536587746e4969faacb0b03849 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0029.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 16, + 100 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0030.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0030.json" new file mode 100644 index 0000000000000000000000000000000000000000..9ca8bf0db7f6b82f6325393b86bfe6296f8cfadb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0030.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 37, + 47 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0031.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0031.json" new file mode 100644 index 0000000000000000000000000000000000000000..734872a56803f2cfd2f9991d08acbaf022b9260e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0031.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 6, + 83 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0032.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0032.json" new file mode 100644 index 0000000000000000000000000000000000000000..84e4bdcdfb749269b9472eb3e7cfc76d29c91cb0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0032.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 78, + 44 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0033.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0033.json" new file mode 100644 index 0000000000000000000000000000000000000000..02413d6861388b0242fa54f013ee31ede6c62686 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0033.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 38, + 26 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0034.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0034.json" new file mode 100644 index 0000000000000000000000000000000000000000..503be95e4fc96c4851fd2e6064291e8334e46ddd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0034.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 96, + 95 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0035.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0035.json" new file mode 100644 index 0000000000000000000000000000000000000000..21aca59556a708044cdf150b880bbd725ee5ccb2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0035.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 33, + 72 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0036.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0036.json" new file mode 100644 index 0000000000000000000000000000000000000000..719ca68f95d947932879ec4aa918d1962888e0ad --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0036.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 15, + 26 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0037.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0037.json" new file mode 100644 index 0000000000000000000000000000000000000000..5d04591d6b344bc1ef22bb2639613e2f9f160239 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0037.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 90, + 81 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0038.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0038.json" new file mode 100644 index 0000000000000000000000000000000000000000..736ebd23f27253610cb5471073b34cfb2948abe4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0038.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 16, + 14 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0039.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0039.json" new file mode 100644 index 0000000000000000000000000000000000000000..2c6b0db04ba7c09bf6d8a38d2ad0b7df0ca08a9b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0039.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 29, + 61 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0040.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0040.json" new file mode 100644 index 0000000000000000000000000000000000000000..853c1b506ba461ad6ee7a66fed7b4ffb1a969865 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0040.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 53, + 83 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0041.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0041.json" new file mode 100644 index 0000000000000000000000000000000000000000..bc5755598f2bbdc7cb169576afad3b39ca45f3cb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0041.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 24, + 53 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0042.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0042.json" new file mode 100644 index 0000000000000000000000000000000000000000..55a6e7177a37092c48656cc574b5660a17660019 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0042.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 67, + 70 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0043.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0043.json" new file mode 100644 index 0000000000000000000000000000000000000000..e92c8bacb4d93d8ecb557ed0bd03ef783e137e7e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0043.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 24, + 41 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0044.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0044.json" new file mode 100644 index 0000000000000000000000000000000000000000..1f4388e10f0c56ddbcd6568333b2160f5873acf9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0044.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 28, + 69 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0045.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0045.json" new file mode 100644 index 0000000000000000000000000000000000000000..12f1e0b28f8e9148eee448af1b7344a27034ed37 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0045.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 68, + 19 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0046.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0046.json" new file mode 100644 index 0000000000000000000000000000000000000000..96561dc81bcfb8ec14973febdef1103f2b5fbd4d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0046.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 39, + 49 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0047.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0047.json" new file mode 100644 index 0000000000000000000000000000000000000000..c98d5b194e2dc87c16d98566b5ffd76f1bae6bf6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0047.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 26, + 1 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0048.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0048.json" new file mode 100644 index 0000000000000000000000000000000000000000..bbd50b7fc73320228bbbb16391a8eca9e188b4bf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0048.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 21, + 18 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0049.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0049.json" new file mode 100644 index 0000000000000000000000000000000000000000..addd91326f0fa7bb217b8dbde044365fab37f77a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0049.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 24, + 28 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0050.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0050.json" new file mode 100644 index 0000000000000000000000000000000000000000..95c61072590846260352d211653ba34446b37a14 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0050.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 56, + 9 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0051.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0051.json" new file mode 100644 index 0000000000000000000000000000000000000000..0859e146143c41fda4b98341089bfaf40e69a139 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0051.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 6, + 55 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0052.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0052.json" new file mode 100644 index 0000000000000000000000000000000000000000..370cd54c9d0e7f5ee8584055ce863d2a4d06c5c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0052.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 21, + 39 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0053.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0053.json" new file mode 100644 index 0000000000000000000000000000000000000000..25c1e1155b44069d64d5dca1668bffb43db943e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0053.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 76, + 61 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0054.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0054.json" new file mode 100644 index 0000000000000000000000000000000000000000..2e2c1693a7ac1431deee6b1089bf48b1b6edd0fa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0054.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 39, + 79 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0055.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0055.json" new file mode 100644 index 0000000000000000000000000000000000000000..105903810257f40de49e8ef6948232da656b5e81 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0055.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 68, + 36 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0056.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0056.json" new file mode 100644 index 0000000000000000000000000000000000000000..651a7d21c931a5d4f3e2ac4b43989fde88277f61 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0056.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 8, + 71 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0057.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0057.json" new file mode 100644 index 0000000000000000000000000000000000000000..8cd6574384da18c1b8c0673b7fe3d034110e9619 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0057.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 51, + 56 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0058.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0058.json" new file mode 100644 index 0000000000000000000000000000000000000000..d65e26f15b1da3e38787b90c9ab6711ee4894922 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0058.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 26, + 20 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0059.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0059.json" new file mode 100644 index 0000000000000000000000000000000000000000..c8093a8c4dc1a5acc3c09c01fff5b20d2e44efca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0059.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 10, + 68 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0060.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0060.json" new file mode 100644 index 0000000000000000000000000000000000000000..33a831a798f57e4137bf3015e7849e95e51b8130 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0060.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 7, + 58 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0061.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0061.json" new file mode 100644 index 0000000000000000000000000000000000000000..579593a063b3c421ae94fce5f2653cd815806b93 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0061.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 40, + 24 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0062.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0062.json" new file mode 100644 index 0000000000000000000000000000000000000000..0eaafe17133ac77286460159f340c5d5c4f470b2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0062.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 26, + 6 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0063.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0063.json" new file mode 100644 index 0000000000000000000000000000000000000000..59e1611a4adb3dfd2279bc26d244573cde610195 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0063.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 61, + 7 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0064.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0064.json" new file mode 100644 index 0000000000000000000000000000000000000000..f0361fd6daee98519a56f11d87916f9cd2d24c53 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0064.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 35, + 60 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0065.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0065.json" new file mode 100644 index 0000000000000000000000000000000000000000..4339652302461efada8e9da6a05fabe7cd857f0a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0065.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 30, + 56 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0066.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0066.json" new file mode 100644 index 0000000000000000000000000000000000000000..b0591e82d4243fc0bb65f8545e79f3b764e65c34 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0066.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 38, + 27 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0067.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0067.json" new file mode 100644 index 0000000000000000000000000000000000000000..66927cc8149a583576565f4b40604846ee9e6825 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0067.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.0", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 33, + 76 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0068.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0068.json" new file mode 100644 index 0000000000000000000000000000000000000000..e3d62ad2894988c4be928b0e604a32d56a6d47e0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0068.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 42, + 68 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0069.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0069.json" new file mode 100644 index 0000000000000000000000000000000000000000..3be2315423cfc9316fd42f933a17b4a0a28dd3f9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0069.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 24, + 70 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0070.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0070.json" new file mode 100644 index 0000000000000000000000000000000000000000..35a05cafb88af2a2913ea399c70bac902e51a32e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0070.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 11, + 5 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0071.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0071.json" new file mode 100644 index 0000000000000000000000000000000000000000..a7b0b1b84246f163e4d8447119d106c10eee503e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0071.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 33, + 77 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0072.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0072.json" new file mode 100644 index 0000000000000000000000000000000000000000..58468761658953c63645fd0ad8bb8823f919fd3f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0072.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 36, + 46 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0073.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0073.json" new file mode 100644 index 0000000000000000000000000000000000000000..613bb7a1024cc9f2d7652f2f74799f51e524c841 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0073.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 5, + 20 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0074.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0074.json" new file mode 100644 index 0000000000000000000000000000000000000000..f13e78330717bdf3d80f1ef9374817e10f2c3a74 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0074.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 48, + 56 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0075.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0075.json" new file mode 100644 index 0000000000000000000000000000000000000000..ca40c840065db7b6e8925a81c13a36c41556c605 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0075.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 80, + 44 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0076.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0076.json" new file mode 100644 index 0000000000000000000000000000000000000000..10494d342c566887527717bf6f00eb4d2e9dfa9c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0076.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 93, + 21 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0077.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0077.json" new file mode 100644 index 0000000000000000000000000000000000000000..62666382923875546e58152f436c2d28ef07c2c8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0077.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 44, + 33 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0078.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0078.json" new file mode 100644 index 0000000000000000000000000000000000000000..3844d40b2e835707abfee67a2eedde7dd8d8535c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0078.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 93, + 49 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0079.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0079.json" new file mode 100644 index 0000000000000000000000000000000000000000..daade9ccb7321483fcc4a493c67846e0cf9fb4aa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0079.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 40, + 58 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0080.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0080.json" new file mode 100644 index 0000000000000000000000000000000000000000..154f2cdae58b469ad3ca483f6d6f3f46a9dbdce3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0080.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 32, + 11 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0081.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0081.json" new file mode 100644 index 0000000000000000000000000000000000000000..2c0b411273b7dbfd816b1b44c2ae0a03e3c9b7b6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0081.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 20, + 61 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0082.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0082.json" new file mode 100644 index 0000000000000000000000000000000000000000..e758e44b0195dfd44de6d9d1951fa74a3780429f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0082.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 23, + 58 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0083.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0083.json" new file mode 100644 index 0000000000000000000000000000000000000000..16bb61b3f1b4177a7e30b5c7c357cb9c5f66a12d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0083.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 20, + 94 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0084.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0084.json" new file mode 100644 index 0000000000000000000000000000000000000000..c6fadb20f429cf342ef67d7291e85753df67e181 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0084.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 21, + 81 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0085.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0085.json" new file mode 100644 index 0000000000000000000000000000000000000000..5027028fc00a053b44134f7d60dca6fc58f9a060 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0085.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 84, + 77 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0086.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0086.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f7e40a8af09ec7cd39c5ae5239b6cf5cb5c6b5e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0086.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 91, + 86 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0087.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0087.json" new file mode 100644 index 0000000000000000000000000000000000000000..0e170c6d40c78b0de52e162f053fc66b3de37c5d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0087.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 79, + 58 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0088.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0088.json" new file mode 100644 index 0000000000000000000000000000000000000000..4fdb61f0f7bf7a7441c0d502804f7b1a4f51459a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0088.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 23, + 72 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0089.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0089.json" new file mode 100644 index 0000000000000000000000000000000000000000..ad4b6f90736989db8876fb19916bb06967e4db80 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0089.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 0, + 60 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0090.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0090.json" new file mode 100644 index 0000000000000000000000000000000000000000..ad8d044ddc4ec58c5b678fcfe0b379ed0ef2c376 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0090.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 36, + 55 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0091.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0091.json" new file mode 100644 index 0000000000000000000000000000000000000000..869dda8edb02b95432c2b6d2150e12ac67d827d5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0091.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 39, + 64 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0092.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0092.json" new file mode 100644 index 0000000000000000000000000000000000000000..0c591e3762bcda9364b1b84b6a604d39bcc3aa78 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0092.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 50, + 39 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0093.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0093.json" new file mode 100644 index 0000000000000000000000000000000000000000..0319350baff426ca9b1da66f39e0bcc7f5ecc566 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0093.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 16, + 34 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0094.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0094.json" new file mode 100644 index 0000000000000000000000000000000000000000..1251f52ef8a0b338e490e1bd5b84bac55dcf2bd6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0094.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 100, + 6 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0095.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0095.json" new file mode 100644 index 0000000000000000000000000000000000000000..7388d1bcc2c423f090f3a605b18a5c211992ff4e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0095.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 99, + 33 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0096.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0096.json" new file mode 100644 index 0000000000000000000000000000000000000000..119e555dc04bbecfc14a55ac7cad2a910b6bfb66 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0096.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 94, + 76 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0097.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0097.json" new file mode 100644 index 0000000000000000000000000000000000000000..58089510fc1d23ec1771694be76c5226b15faeef --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0097.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 74, + 75 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0098.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0098.json" new file mode 100644 index 0000000000000000000000000000000000000000..a9d757b6cf22e5435ee672f2926ddb8496336a6c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0098.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 83, + 14 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0099.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0099.json" new file mode 100644 index 0000000000000000000000000000000000000000..72ac15d4bb4f399bb5cb6961052f13f48251383f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0099.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 48, + 81 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0100.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0100.json" new file mode 100644 index 0000000000000000000000000000000000000000..da52cad1e22433c104d728f4074b514bb7243d86 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0100.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 92, + 35 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0101.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0101.json" new file mode 100644 index 0000000000000000000000000000000000000000..1daa00be01e0b8111d47c0d300240793891fe664 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0101.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 91, + 8 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0102.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0102.json" new file mode 100644 index 0000000000000000000000000000000000000000..db167c717eb519b953d6e465a1128f3b1946895d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0102.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 66, + 66 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0103.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0103.json" new file mode 100644 index 0000000000000000000000000000000000000000..5e0fe1e267d7389024b70c871f83c0743dfd2c8b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0103.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 19, + 67 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0104.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0104.json" new file mode 100644 index 0000000000000000000000000000000000000000..68c0fa86ff154b02f77e79dff5e3967872ec5ca4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0104.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 100, + 99 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0105.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0105.json" new file mode 100644 index 0000000000000000000000000000000000000000..edf1aca4a8baec4271ede22b0f40c30c12bb12b0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0105.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 80, + 71 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0106.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0106.json" new file mode 100644 index 0000000000000000000000000000000000000000..0b8352f1c4379982d225bb14da6901c459c0e556 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0106.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 87, + 36 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0107.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0107.json" new file mode 100644 index 0000000000000000000000000000000000000000..fa901b248e4b7866b3c7e8d88f0a28b1fc5d4373 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0107.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 90, + 76 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0108.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0108.json" new file mode 100644 index 0000000000000000000000000000000000000000..1490bbe03905a2e184b83be57f04f0b628e43ea4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0108.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 87, + 61 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0109.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0109.json" new file mode 100644 index 0000000000000000000000000000000000000000..fae5d0ba76687c55a05e1b99f6ebc1f119ced6bb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0109.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 23, + 84 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0110.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0110.json" new file mode 100644 index 0000000000000000000000000000000000000000..e4e0c3095dad0304d9e34bbcae7c16e66ab521aa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0110.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 18, + 96 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0111.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0111.json" new file mode 100644 index 0000000000000000000000000000000000000000..d756de39836133fa0d6128139dfbef964df5b152 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0111.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 88, + 0 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0112.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0112.json" new file mode 100644 index 0000000000000000000000000000000000000000..af78d7edd6ea842a38fd35b5b8bcb117bbed38a7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0112.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.7", + "shadow": "3.0", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 45, + 21 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0113.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0113.json" new file mode 100644 index 0000000000000000000000000000000000000000..b5b9175891c27387e2c08859299dd1b7c3fbfc55 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0113.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 20, + 80 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0114.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0114.json" new file mode 100644 index 0000000000000000000000000000000000000000..eff63a7daf5166d0ea5ed4debf53b03608910ca2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0114.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 81, + 7 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0115.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0115.json" new file mode 100644 index 0000000000000000000000000000000000000000..b68b272cccf72304c347215cda3bb3fdc23f5f02 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0115.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 6, + 35 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0116.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0116.json" new file mode 100644 index 0000000000000000000000000000000000000000..9fad13559f2b081922451fec0e9c92cdb339fe5a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0116.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 25, + 30 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0117.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0117.json" new file mode 100644 index 0000000000000000000000000000000000000000..80e55034b5410c61b63ce4897849f2ff264ecb91 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0117.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 95, + 84 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0118.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0118.json" new file mode 100644 index 0000000000000000000000000000000000000000..f5433f2f277c124b2ed496e276acd018e715b959 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0118.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 18, + 43 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0119.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0119.json" new file mode 100644 index 0000000000000000000000000000000000000000..cd42c8347f30d9e0ae796f27bdae5c262602cc0d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0119.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 66, + 31 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0120.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0120.json" new file mode 100644 index 0000000000000000000000000000000000000000..f913c4e5541e69d961f7650cb556cae3a2b43fd3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0120.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 59, + 96 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0121.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0121.json" new file mode 100644 index 0000000000000000000000000000000000000000..bec15a660e7e9779ddd7205fdfa0c2daa9b688be --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0121.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 69, + 86 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0122.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0122.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f67b187e5287163031d07891d80b632a70b1eef --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0122.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 41, + 32 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0123.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0123.json" new file mode 100644 index 0000000000000000000000000000000000000000..09f354ecb774ab6287355151068b527f4b444574 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0123.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 42, + 79 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0124.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0124.json" new file mode 100644 index 0000000000000000000000000000000000000000..c18cbf6e65145693addaad91c326f3bd7b3bf9b9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0124.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 96, + 35 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0125.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0125.json" new file mode 100644 index 0000000000000000000000000000000000000000..1d9c8946911cfa00f1d82b903529b33c9b17f7f6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0125.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 28, + 5 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0126.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0126.json" new file mode 100644 index 0000000000000000000000000000000000000000..4b8e9043d24a206adf9f042e730ddd71efd5c171 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0126.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 44, + 3 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0127.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0127.json" new file mode 100644 index 0000000000000000000000000000000000000000..442fc5bbbef79e9bb0f16afab4171871c16554af --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0127.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 100, + 25 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0128.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0128.json" new file mode 100644 index 0000000000000000000000000000000000000000..c5b830c0b4a06d64914cfbdb7f9bcdf2d7a715fc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0128.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 36, + 24 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0129.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0129.json" new file mode 100644 index 0000000000000000000000000000000000000000..53a886b83a96d4642c1c3fe08ce0844a36725099 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0129.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 16, + 89 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0130.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0130.json" new file mode 100644 index 0000000000000000000000000000000000000000..c15dbd379cf9252871ac3d68f6a5e86f9c006b09 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0130.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 51, + 30 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0131.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0131.json" new file mode 100644 index 0000000000000000000000000000000000000000..532e1818868a8aa7e4d357449563d416714844f0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0131.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 80, + 44 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0132.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0132.json" new file mode 100644 index 0000000000000000000000000000000000000000..df61d9d568064d2456179f497490fd5069980654 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0132.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 25, + 44 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0133.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0133.json" new file mode 100644 index 0000000000000000000000000000000000000000..cec897edc8fe970a3d87cd2ffc124c01d66ddac7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0133.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 37, + 31 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0134.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0134.json" new file mode 100644 index 0000000000000000000000000000000000000000..812f1a77473b1f1b84856d581f1ce8a88a34fbfa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0134.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 24, + 1 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0135.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0135.json" new file mode 100644 index 0000000000000000000000000000000000000000..18e93a3d257cbc739f521b97dd967f60d987d2f9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0135.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 92, + 60 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0136.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0136.json" new file mode 100644 index 0000000000000000000000000000000000000000..896d321b38991f71e73b8b7c044f5751853105e5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0136.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 27, + 70 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0137.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0137.json" new file mode 100644 index 0000000000000000000000000000000000000000..9a446c4a2b60edccc0a9c4717b581a358f7a2ab4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0137.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 20, + 92 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0138.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0138.json" new file mode 100644 index 0000000000000000000000000000000000000000..975eb702c4fa698bfd2a11a3d174f4c66912d247 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0138.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 53, + 87 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0139.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0139.json" new file mode 100644 index 0000000000000000000000000000000000000000..fddb680fd54dbf1a95f0f1e48211e3d47af325b9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0139.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 94, + 19 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0140.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0140.json" new file mode 100644 index 0000000000000000000000000000000000000000..5dd24015773bcdd8a4eb306b8d7dfc0d16c16a72 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0140.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 57, + 83 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0141.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0141.json" new file mode 100644 index 0000000000000000000000000000000000000000..b7cb9d25ca56c3a7530b39f612b58c67a27f14c0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0141.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 23, + 45 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0142.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0142.json" new file mode 100644 index 0000000000000000000000000000000000000000..f3c05e520889066d7272e6814f4ecfc4f179954c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0142.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 74, + 60 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0143.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0143.json" new file mode 100644 index 0000000000000000000000000000000000000000..c234abf96ba62c7d39ecaf2adc1c58818e4062cb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0143.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 57, + 60 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0144.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0144.json" new file mode 100644 index 0000000000000000000000000000000000000000..0a9afa02710e08d82c6fab23afc688d6a9c6f7e2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0144.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 5, + 29 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0145.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0145.json" new file mode 100644 index 0000000000000000000000000000000000000000..08386181f638187910709d62460034e2dc5cd892 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0145.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 8, + 58 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0146.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0146.json" new file mode 100644 index 0000000000000000000000000000000000000000..a2268b1dd70c063f2ecaa49b8bdd5abbbb07b17f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0146.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 88, + 99 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0147.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0147.json" new file mode 100644 index 0000000000000000000000000000000000000000..d9ccb3a9d35448938f7f9aa7d5dc4f42a001000d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0147.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 93, + 25 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0148.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0148.json" new file mode 100644 index 0000000000000000000000000000000000000000..e43e7d987f6e05b52ad49e00421feba1ec6ad02b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0148.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 2, + 36 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0149.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0149.json" new file mode 100644 index 0000000000000000000000000000000000000000..0c3055e85b09023de3a8edcbef978bf666889178 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0149.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 99, + 15 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0150.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0150.json" new file mode 100644 index 0000000000000000000000000000000000000000..20e379b5d4629ad21392f925422f7a4b9e16d129 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0150.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 4, + 15 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0151.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0151.json" new file mode 100644 index 0000000000000000000000000000000000000000..3e70bfe60c8aca55cc3e81787c6af307771b470c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0151.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 68, + 22 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0152.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0152.json" new file mode 100644 index 0000000000000000000000000000000000000000..2f5e8f508cdefd65efd3ca29c5e4cfaa98498d48 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0152.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 25, + 86 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0153.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0153.json" new file mode 100644 index 0000000000000000000000000000000000000000..1d9dc72788539e2ce9f991f6b68877822c277132 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0153.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 84, + 35 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0154.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0154.json" new file mode 100644 index 0000000000000000000000000000000000000000..16f3ed91fcdc1010d0ef65cf11cfe07ac58e4bd4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0154.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 53, + 59 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0155.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0155.json" new file mode 100644 index 0000000000000000000000000000000000000000..0d3acea3bd9c7a568e9a3f238797bee408012f89 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0155.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 11, + 3 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0156.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0156.json" new file mode 100644 index 0000000000000000000000000000000000000000..c5bb2e7a97e26a84963b382a18d95bdc92d7c167 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0156.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 12, + 80 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0157.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0157.json" new file mode 100644 index 0000000000000000000000000000000000000000..0aae947a5b4f765aa1d06e63be7f82c3bf087a3d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0157.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 25, + 62 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0158.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0158.json" new file mode 100644 index 0000000000000000000000000000000000000000..e4093f8f1d3b62d780a65ccd08dc91b9f6a1e55e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0158.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 24, + 67 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0159.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0159.json" new file mode 100644 index 0000000000000000000000000000000000000000..77ae23b57426b79b29050808c8bd613f13ae317e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0159.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 36, + 66 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0160.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0160.json" new file mode 100644 index 0000000000000000000000000000000000000000..89f27c34d28b6ec82ea88b7ae2156076431b9840 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0160.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 20, + 72 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0161.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0161.json" new file mode 100644 index 0000000000000000000000000000000000000000..df69cfb48ead909e1dc175af526c304275e6b2be --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0161.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 84, + 80 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0162.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0162.json" new file mode 100644 index 0000000000000000000000000000000000000000..8ced0bd5e5b3a5a2e59a734f94dc1d2a68ab7a9a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0162.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 35, + 53 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0163.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0163.json" new file mode 100644 index 0000000000000000000000000000000000000000..10bb259dfe4353fd3d6aeaf31cb660471f03a17f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0163.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 78, + 75 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0164.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0164.json" new file mode 100644 index 0000000000000000000000000000000000000000..d405b5285cad264b5f155869a7290654793cadc4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0164.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 85, + 82 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0165.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0165.json" new file mode 100644 index 0000000000000000000000000000000000000000..f2ac2f7c13fb69a95db5eb0f8df2b69a95b08e17 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0165.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 39, + 2 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0166.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0166.json" new file mode 100644 index 0000000000000000000000000000000000000000..01587ae3f23c299918739be3756971be519365b3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0166.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 57, + 11 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0167.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0167.json" new file mode 100644 index 0000000000000000000000000000000000000000..ad5ac0ed915044fc85428b33f2da10271a339de4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0167.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 43, + 14 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0168.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0168.json" new file mode 100644 index 0000000000000000000000000000000000000000..4a556c3743fa4c27dd820fc16509324264f24acc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0168.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 74, + 25 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0169.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0169.json" new file mode 100644 index 0000000000000000000000000000000000000000..bafa42077cbc05224a8087238be65053e54c961c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0169.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 70, + 36 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0170.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0170.json" new file mode 100644 index 0000000000000000000000000000000000000000..9a9f145a9d46d27f8ef163ddef2203adf9e58cdc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0170.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 70, + 26 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0171.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0171.json" new file mode 100644 index 0000000000000000000000000000000000000000..85408167d02cac4018e6858d82237b4139738bc5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0171.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 84, + 50 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0172.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0172.json" new file mode 100644 index 0000000000000000000000000000000000000000..9d678d9d4f98510b2a9da4ecd805556cbfa454fc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0172.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 16, + 23 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0173.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0173.json" new file mode 100644 index 0000000000000000000000000000000000000000..221dce9be7be1ebd8cd89187c38ca189237c7feb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0173.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 91, + 13 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0174.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0174.json" new file mode 100644 index 0000000000000000000000000000000000000000..bc12a1cad9107119a813b45abb46e093afc119ca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0174.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 87, + 42 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0175.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0175.json" new file mode 100644 index 0000000000000000000000000000000000000000..3d7fd16054c5a475a39471bb29e5a041674d2d42 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0175.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 16, + 42 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0176.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0176.json" new file mode 100644 index 0000000000000000000000000000000000000000..a8e7a8ea003271364ed487bc10fcd6735c055667 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0176.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 76, + 78 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0177.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0177.json" new file mode 100644 index 0000000000000000000000000000000000000000..98928c4f9dc1e478f124d9fd17cae26e8ee6a533 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0177.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 45, + 10 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0178.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0178.json" new file mode 100644 index 0000000000000000000000000000000000000000..d035123e88f816e7b872f58797ceffca4efd0cf5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0178.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 28, + 55 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0179.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0179.json" new file mode 100644 index 0000000000000000000000000000000000000000..65a87b36aa1483dd3fdb55fc6cae6848f5df7a8f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0179.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 5, + 7 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0180.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0180.json" new file mode 100644 index 0000000000000000000000000000000000000000..597151de5ac6e874b9b0724f392d81617fdcd937 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0180.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 14, + 42 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0181.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0181.json" new file mode 100644 index 0000000000000000000000000000000000000000..45acea6c5f1bbefd8ce61db2a2f6a376047d03df --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0181.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 11, + 62 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0182.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0182.json" new file mode 100644 index 0000000000000000000000000000000000000000..1d26f1b51be1acd14490443b0034bbb842b47536 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0182.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 28, + 48 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0183.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0183.json" new file mode 100644 index 0000000000000000000000000000000000000000..980cdb9c1f6bf3f28b1d120748bfd19b16cf2a99 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0183.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 95, + 71 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0184.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0184.json" new file mode 100644 index 0000000000000000000000000000000000000000..8723ab41f792f8184332b24ef1978a1c032623b9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0184.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playwrite DK Uloopet Guides", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 55, + 90 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0185.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0185.json" new file mode 100644 index 0000000000000000000000000000000000000000..521d527f9ada9a028aa6c26ee4d002464f17a252 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0185.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 16, + 51 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0186.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0186.json" new file mode 100644 index 0000000000000000000000000000000000000000..893c4eb54f83057092aaeb32684eb00de502b5ff --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0186.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "3.6", + "shadow": "3.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 26, + 82 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0187.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0187.json" new file mode 100644 index 0000000000000000000000000000000000000000..c92388dfe3aec483fef0969958ef76cbe0b184fa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0187.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 73, + 14 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0188.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0188.json" new file mode 100644 index 0000000000000000000000000000000000000000..e03dc71b4b4a3d64eedddffeb4829e96d5c56df6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0188.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 3, + 39 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0189.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0189.json" new file mode 100644 index 0000000000000000000000000000000000000000..5fb4362e118b27e44846feb48a6b76fa4e637e52 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0189.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 24, + 99 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0190.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0190.json" new file mode 100644 index 0000000000000000000000000000000000000000..ba574ed69920b10acc3aa1d75942fc2e83147f8d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0190.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 8, + 3 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0191.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0191.json" new file mode 100644 index 0000000000000000000000000000000000000000..9fafb388bfeaf43d85da892c40da9427ccc76f57 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0191.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 34, + 99 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0192.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0192.json" new file mode 100644 index 0000000000000000000000000000000000000000..56a86230572b07b5776775d067a9d3442aa76f90 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0192.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 34, + 91 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0193.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0193.json" new file mode 100644 index 0000000000000000000000000000000000000000..c600ed79747b3adf54b7b4956556297a396427a3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0193.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 69, + 83 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0194.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0194.json" new file mode 100644 index 0000000000000000000000000000000000000000..98840ae05dbc2fc57a07e971a2e19482b4efb327 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0194.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 89, + 25 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0195.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0195.json" new file mode 100644 index 0000000000000000000000000000000000000000..c11e580101c0552599f34ba991d3beef5bfef624 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0195.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 89, + 86 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0196.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0196.json" new file mode 100644 index 0000000000000000000000000000000000000000..1d2a8d89bc7811b1a93b30e766be229e647114eb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0196.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 71, + 79 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0197.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0197.json" new file mode 100644 index 0000000000000000000000000000000000000000..2c149997577a8391594d883f74e9f12dbc67453d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0197.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 40, + 63 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0198.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0198.json" new file mode 100644 index 0000000000000000000000000000000000000000..7c3f8db00409b609d6228043e528d6342420fa02 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0198.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 62, + 11 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0199.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0199.json" new file mode 100644 index 0000000000000000000000000000000000000000..086fb683fe53249ee20db50aa856c3431a4f69e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0199.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 88, + 49 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0200.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0200.json" new file mode 100644 index 0000000000000000000000000000000000000000..61b42b00833f1a67ba23e41f230e2169ff23c3d0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0200.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 3, + 27 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0201.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0201.json" new file mode 100644 index 0000000000000000000000000000000000000000..59a670392c7ec1974517c49f3f846b15db1b9104 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0201.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "3.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 68, + 40 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0202.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0202.json" new file mode 100644 index 0000000000000000000000000000000000000000..e18f1ce65a38baf54390405298881a158006ed75 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0202.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 12, + 29 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0203.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0203.json" new file mode 100644 index 0000000000000000000000000000000000000000..4d8b827daeac4d1977bd0ecca7676515d91f2a13 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0203.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 54, + 14 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0204.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0204.json" new file mode 100644 index 0000000000000000000000000000000000000000..b30b70db95c2f5d2e0e1df2a7de6a7923fbe609d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0204.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 82, + 9 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0205.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0205.json" new file mode 100644 index 0000000000000000000000000000000000000000..86249c992ce7319d9f43126b19cc0f160d243348 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0205.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 1, + 54 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0206.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0206.json" new file mode 100644 index 0000000000000000000000000000000000000000..077dff35a2e1f0676c60ca01fd5b617f8ceb6de0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0206.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 99, + 35 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0207.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0207.json" new file mode 100644 index 0000000000000000000000000000000000000000..176689963c6a7d920c2da53327018911f52de1cd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0207.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 87, + 44 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0208.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0208.json" new file mode 100644 index 0000000000000000000000000000000000000000..aad8992330d810b90fe03086f6315145ad151a4d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0208.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 36, + 1 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0209.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0209.json" new file mode 100644 index 0000000000000000000000000000000000000000..f0cab9b2775cc1247fa5591722cb1e7059a637b0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0209.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 77, + 44 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0210.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0210.json" new file mode 100644 index 0000000000000000000000000000000000000000..fe118523aa34a77d951fd6dad9c55ee756600427 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0210.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 60, + 84 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0211.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0211.json" new file mode 100644 index 0000000000000000000000000000000000000000..59c16d751bff43692bc13580ac03172da4294aa3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0211.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 33, + 78 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0212.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0212.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f12c47b5cd76f083ac6b665cbaef386f1d0e47c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0212.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 27, + 57 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0213.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0213.json" new file mode 100644 index 0000000000000000000000000000000000000000..d59bde652cbde5507ee980592de9548e5d669283 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0213.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 20, + 47 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0214.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0214.json" new file mode 100644 index 0000000000000000000000000000000000000000..6deb5af8e3fa2b3781df18bfeecc88cc0f4bebb9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0214.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 63, + 48 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0215.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0215.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac4791496b5c5a0c0b46678022bf723d44ea1619 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0215.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 6, + 47 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0216.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0216.json" new file mode 100644 index 0000000000000000000000000000000000000000..e99944416200b5dd4b88453ae36fcf10729e93cc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0216.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 17, + 81 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0217.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0217.json" new file mode 100644 index 0000000000000000000000000000000000000000..153c717846b9ccac2a6f8e6c7dc03384a13c1b74 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0217.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 7, + 67 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0218.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0218.json" new file mode 100644 index 0000000000000000000000000000000000000000..84163cbc2a790dc23b9beb3d5dbb45c1020d2877 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0218.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 77, + 56 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0219.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0219.json" new file mode 100644 index 0000000000000000000000000000000000000000..5fddff377ceba2fd322a9435a0ab192c515323b1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0219.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 18, + 98 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0220.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0220.json" new file mode 100644 index 0000000000000000000000000000000000000000..d0d0b8fb1d34f7caf7618d4bea1333129ff1e881 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0220.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 76, + 25 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0221.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0221.json" new file mode 100644 index 0000000000000000000000000000000000000000..d31cc2a27b11107df5545c1f48bb4a855abe1b41 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0221.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 3, + 97 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0222.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0222.json" new file mode 100644 index 0000000000000000000000000000000000000000..0e83a685428bedf27352025d8390adbda68da50f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0222.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 67, + 79 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0223.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0223.json" new file mode 100644 index 0000000000000000000000000000000000000000..05ca0bf5fd35f306c2850bf49b7816853bf3b3cf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0223.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 44, + 86 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0224.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0224.json" new file mode 100644 index 0000000000000000000000000000000000000000..b9b265c0cda20593bdd5b3f853765bbe744a10fb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0224.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 7, + 78 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0225.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0225.json" new file mode 100644 index 0000000000000000000000000000000000000000..37bf82594c35d9534212c9a0a64028c6d9e35bb9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0225.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 84, + 30 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0226.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0226.json" new file mode 100644 index 0000000000000000000000000000000000000000..c328df672fd0f80f0b19ed56b8ef9554c44ff0e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0226.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 33, + 17 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0227.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0227.json" new file mode 100644 index 0000000000000000000000000000000000000000..4c39de3b74011a9af7184a3946815d292cce6927 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0227.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "3.0", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 52, + 69 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0228.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0228.json" new file mode 100644 index 0000000000000000000000000000000000000000..53be2f066666c64cb370d8f44dea81b0cf2fb752 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0228.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 26, + 4 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0229.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0229.json" new file mode 100644 index 0000000000000000000000000000000000000000..b0d8efad764046484aa93568cf18c277df9b980a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0229.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 45, + 16 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0230.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0230.json" new file mode 100644 index 0000000000000000000000000000000000000000..363113316fc4a8a33df182b379f8cf8162f94b6a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0230.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 43, + 43 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0231.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0231.json" new file mode 100644 index 0000000000000000000000000000000000000000..08200df38f0308a7f96cc1eba5d6671b3972d9ae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0231.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 90, + 83 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0232.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0232.json" new file mode 100644 index 0000000000000000000000000000000000000000..3601799551959fbdeaf8f1b60b34fa83c716db33 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0232.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 59, + 88 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0233.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0233.json" new file mode 100644 index 0000000000000000000000000000000000000000..616b9d8bee7f70e606d0785d83f339eb57ff8441 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0233.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 52, + 38 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0234.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0234.json" new file mode 100644 index 0000000000000000000000000000000000000000..fe51697f0a6fd85e67285efe926859917176072b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0234.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 42, + 15 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0235.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0235.json" new file mode 100644 index 0000000000000000000000000000000000000000..c203615b1fadcd770b6f6c2d7f20403ebccd6741 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0235.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 60, + 72 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0236.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0236.json" new file mode 100644 index 0000000000000000000000000000000000000000..458eb1039538b1102bb129bcf3a763f9eea783d0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0236.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 10, + 52 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0237.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0237.json" new file mode 100644 index 0000000000000000000000000000000000000000..9efc40f781037da9c9c8a3e4c57acdc87558d416 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0237.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 50, + 59 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0238.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0238.json" new file mode 100644 index 0000000000000000000000000000000000000000..d5c41e1c172da649ce5a15df1dc0e5b994c404dd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0238.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 21, + 72 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0239.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0239.json" new file mode 100644 index 0000000000000000000000000000000000000000..686d746a064219fa5ce39db34c57856a8c42a673 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0239.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 95, + 85 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0240.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0240.json" new file mode 100644 index 0000000000000000000000000000000000000000..02ccd086ce71734a372673e245cf8f504cd54bd7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0240.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 97, + 75 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0241.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0241.json" new file mode 100644 index 0000000000000000000000000000000000000000..69f75651195735de95f4d2b0a0ef01fbfe5c954f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0241.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 55, + 99 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0242.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0242.json" new file mode 100644 index 0000000000000000000000000000000000000000..b86d1c116d53bea7403acdf07b4547d26c887ff2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0242.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 99, + 9 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0243.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0243.json" new file mode 100644 index 0000000000000000000000000000000000000000..88ef07d4fc2b487e93a75bc93ed4a5ac54262f6f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0243.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 28, + 51 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0244.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0244.json" new file mode 100644 index 0000000000000000000000000000000000000000..b532790039380517ce9f0b0aec338002cfa61323 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0244.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 0, + 7 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0245.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0245.json" new file mode 100644 index 0000000000000000000000000000000000000000..f415800dc1bb4c6745ce3b966c2c9572f2db376d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0245.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 35, + 27 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0246.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0246.json" new file mode 100644 index 0000000000000000000000000000000000000000..68a99a02326f904fcaa76092af5b391dfa38fa5f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0246.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 26, + 95 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0247.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0247.json" new file mode 100644 index 0000000000000000000000000000000000000000..81b4139442904bf5d2a84664fda6ad680cea89cb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0247.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 11, + 77 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0248.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0248.json" new file mode 100644 index 0000000000000000000000000000000000000000..a7f5d9b30709a1e0a6ba49b824d8ebeb59e16a45 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0248.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "3.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 71, + 52 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0249.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0249.json" new file mode 100644 index 0000000000000000000000000000000000000000..43c7cbefdfadcbfaa041fd9617de7e16e496b7d7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0249.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 18, + 79 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0250.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0250.json" new file mode 100644 index 0000000000000000000000000000000000000000..54c279e8f87bb2970ce3b5917bf23a9eab57bb35 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0250.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 87, + 8 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0251.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0251.json" new file mode 100644 index 0000000000000000000000000000000000000000..c80bb0db58e0abfcbe5f57cff9bc5230722dacc7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0251.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 84, + 48 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0252.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0252.json" new file mode 100644 index 0000000000000000000000000000000000000000..60f9f8f5a1364475b70983c9ca776d04cfae8233 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0252.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 2, + 45 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0253.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0253.json" new file mode 100644 index 0000000000000000000000000000000000000000..7d95aa0209f5b7658263bafc75c9df029be519aa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0253.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.8", + "shadow": "3.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 80, + 27 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0254.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0254.json" new file mode 100644 index 0000000000000000000000000000000000000000..1dae3a212ab471bef6e0803c8c52813def452377 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0254.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 31, + 93 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0255.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0255.json" new file mode 100644 index 0000000000000000000000000000000000000000..5f0ddb140cc744a272ff4d9e4e16c5d0ab978f5f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0255.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 20, + 4 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0256.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0256.json" new file mode 100644 index 0000000000000000000000000000000000000000..5e283237f548bb92c045ea9bb0caeb7c772f1157 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0256.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 52, + 24 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0257.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0257.json" new file mode 100644 index 0000000000000000000000000000000000000000..d903697670807d3f46d69400ad15a87a5e16041d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0257.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 78, + 29 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0258.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0258.json" new file mode 100644 index 0000000000000000000000000000000000000000..7cc78a42971a626a02e1aae1bde81632c969fd79 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0258.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 77, + 4 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0259.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0259.json" new file mode 100644 index 0000000000000000000000000000000000000000..2a4ac243c721ec15a4c8039e90fa8c594a96a391 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0259.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 26, + 74 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0260.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0260.json" new file mode 100644 index 0000000000000000000000000000000000000000..3bafba2a1bc315a03e88c7bbe5f6c41763c6113a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0260.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 99, + 23 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0261.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0261.json" new file mode 100644 index 0000000000000000000000000000000000000000..8e5ad0c0787054700792d510d164d7c5c1d5f73a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0261.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 51, + 7 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0262.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0262.json" new file mode 100644 index 0000000000000000000000000000000000000000..4171e1b4ed182346f8fa4020d7a11f33fed763b7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0262.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 64, + 96 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0263.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0263.json" new file mode 100644 index 0000000000000000000000000000000000000000..fece1327cc37db9c1b252149a4fd24ce156f6bc7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0263.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 37, + 77 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0264.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0264.json" new file mode 100644 index 0000000000000000000000000000000000000000..f22e2acff84172c630e2dba0b658ca58faec03e3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0264.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 47, + 20 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0265.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0265.json" new file mode 100644 index 0000000000000000000000000000000000000000..c928ab057dc0235911619bfda2971a5ec292ed5c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0265.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 38, + 45 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0266.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0266.json" new file mode 100644 index 0000000000000000000000000000000000000000..84c94dbe4f6b6aee204b60c8a4c2a3b761cd6ceb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0266.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.2", + "shadow": "3.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 9, + 89 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0267.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0267.json" new file mode 100644 index 0000000000000000000000000000000000000000..84051e3212af5df2d938d58eb8f6866b1d9a391f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0267.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 68, + 0 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0268.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0268.json" new file mode 100644 index 0000000000000000000000000000000000000000..d0ec5ec76aa0e9eb2cd13a1b1b5536f1c44a7259 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0268.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 90, + 24 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0269.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0269.json" new file mode 100644 index 0000000000000000000000000000000000000000..50a768786ba28ffcb6959734c45271d7d2143353 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0269.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 17, + 68 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0270.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0270.json" new file mode 100644 index 0000000000000000000000000000000000000000..cf4d521096be2735dcab7bc29d8fef55af0fa689 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0270.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 26, + 20 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0271.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0271.json" new file mode 100644 index 0000000000000000000000000000000000000000..8d20a74de9e302c88cfdf49934d75c77f92b5104 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0271.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 92, + 67 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0272.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0272.json" new file mode 100644 index 0000000000000000000000000000000000000000..6526f558f8be059974ed30b34dcd599865c5c262 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0272.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 81, + 24 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0273.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0273.json" new file mode 100644 index 0000000000000000000000000000000000000000..cca186cccc304e1579b886852259390988d14618 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0273.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 70, + 22 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0274.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0274.json" new file mode 100644 index 0000000000000000000000000000000000000000..755934283822f601fd6db0547d5c4337a33022b7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0274.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "3.0", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 8, + 2 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0275.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0275.json" new file mode 100644 index 0000000000000000000000000000000000000000..993e06d69e65b285aaf01430525da9111cb2c325 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0275.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 19, + 17 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0276.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0276.json" new file mode 100644 index 0000000000000000000000000000000000000000..536960dc36783f05755f40d28abcadd648772f7d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0276.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 46, + 89 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0277.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0277.json" new file mode 100644 index 0000000000000000000000000000000000000000..8d928605a10298d18d1146acbe65fc8147d43349 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0277.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 78, + 34 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0278.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0278.json" new file mode 100644 index 0000000000000000000000000000000000000000..697d0daf5191e8b8ad2a3fe6d33906c8a535cf68 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0278.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 91, + 87 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0279.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0279.json" new file mode 100644 index 0000000000000000000000000000000000000000..e8cc60c4e3b6cdd18c4ba962b33b7c7b5420ec32 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0279.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 12, + 45 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0280.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0280.json" new file mode 100644 index 0000000000000000000000000000000000000000..598932afad5bf413225e72e22ab5ce9f0e62d51a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0280.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 53, + 3 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0281.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0281.json" new file mode 100644 index 0000000000000000000000000000000000000000..2c0d2314c2e57dc4aeea20f07d8fe6fd82ac487d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0281.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 85, + 25 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0282.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0282.json" new file mode 100644 index 0000000000000000000000000000000000000000..b2b72df16dae5554cfbc01610aace740c07cb2e4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0282.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 56, + 18 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0283.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0283.json" new file mode 100644 index 0000000000000000000000000000000000000000..250ffb41e82a8f15af9c56303dc886c07eec4119 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0283.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 22, + 19 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0284.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0284.json" new file mode 100644 index 0000000000000000000000000000000000000000..d8f4a6300592dfa4b3d32bae52f919d9f94396b4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0284.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 84, + 36 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0285.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0285.json" new file mode 100644 index 0000000000000000000000000000000000000000..c70a7a7c56a65e8b56b702168245401faf657f2c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0285.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 80, + 58 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0286.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0286.json" new file mode 100644 index 0000000000000000000000000000000000000000..d58030e2aa029c76d8573ac0f7a9cfc497710cec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0286.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 93, + 73 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0287.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0287.json" new file mode 100644 index 0000000000000000000000000000000000000000..5c56e932ce4e6cf05e85ada5239f4c7b11d00724 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0287.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 80, + 21 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0288.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0288.json" new file mode 100644 index 0000000000000000000000000000000000000000..7a177d4470051b0154a5da4486a1732d7f788a44 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0288.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 92, + 82 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0289.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0289.json" new file mode 100644 index 0000000000000000000000000000000000000000..5cc36547018c1ef225c0963ba693975392ce97e6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0289.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 41, + 24 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0290.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0290.json" new file mode 100644 index 0000000000000000000000000000000000000000..109803174619dd96a6032d6ac3cf2c9f869a815e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0290.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 63, + 21 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0291.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0291.json" new file mode 100644 index 0000000000000000000000000000000000000000..458879b7bbd70c3c72e293067763ca46725d7bb9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0291.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 42, + 11 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0292.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0292.json" new file mode 100644 index 0000000000000000000000000000000000000000..a392ef705e770f0766888a181a6fa52578d908d6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0292.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 58, + 24 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0293.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0293.json" new file mode 100644 index 0000000000000000000000000000000000000000..6d62c884d2b670c049ead7224be2ebfa23df9660 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0293.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 48, + 44 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0294.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0294.json" new file mode 100644 index 0000000000000000000000000000000000000000..09e3df1f38bb869333bd0244b761073ace699331 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0294.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 89, + 78 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0295.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0295.json" new file mode 100644 index 0000000000000000000000000000000000000000..b40b19cf8bea282df6626bcbce2d8a1eee823c2f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0295.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 2, + 4 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0296.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0296.json" new file mode 100644 index 0000000000000000000000000000000000000000..954f944fd3d1ad1fef9528c95b0e1509aaaa1482 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0296.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 1, + 25 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0297.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0297.json" new file mode 100644 index 0000000000000000000000000000000000000000..00b3e178d3da9252e4360f28a966200bc64f933d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0297.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 99, + 90 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0298.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0298.json" new file mode 100644 index 0000000000000000000000000000000000000000..879d982c2e4072b5ab68eec5417fbf534cf5ae07 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0298.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 57, + 100 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0299.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0299.json" new file mode 100644 index 0000000000000000000000000000000000000000..ad379d8bc4cc1057628e469a2d88060afc67eac4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0299.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 50, + 76 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0300.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0300.json" new file mode 100644 index 0000000000000000000000000000000000000000..81aab6b7160cf68d2c0a06d06b412120647e2703 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0300.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 40, + 58 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0301.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0301.json" new file mode 100644 index 0000000000000000000000000000000000000000..16801c1c2951899e0842c1ee0f3c43b26306bdcc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0301.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 71, + 37 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0302.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0302.json" new file mode 100644 index 0000000000000000000000000000000000000000..528ab8f3a3ce3b1d24faafee41eec5f6962f8230 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0302.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 87, + 16 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0303.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0303.json" new file mode 100644 index 0000000000000000000000000000000000000000..019fb9f3056f650b365a68b84461a19350aaf82b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0303.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 88, + 14 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0304.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0304.json" new file mode 100644 index 0000000000000000000000000000000000000000..efd975f825ae2137db52a78df7199e2e77b78962 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0304.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 43, + 34 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0305.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0305.json" new file mode 100644 index 0000000000000000000000000000000000000000..de4cd6f75a8548ccad1e8d464c2e6dd7e1dba83d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0305.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 86, + 0 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0306.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0306.json" new file mode 100644 index 0000000000000000000000000000000000000000..4ea0f85c2ffec613f2c963c3d3ed8108b391d6be --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0306.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 66, + 75 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0307.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0307.json" new file mode 100644 index 0000000000000000000000000000000000000000..e9b8226d8cb3ef843e9688f8d0cd6c15da8de8da --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0307.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 82, + 32 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0308.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0308.json" new file mode 100644 index 0000000000000000000000000000000000000000..ab95303bad8a7d5ee33e9ee97e9b681a9c019852 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0308.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 87, + 85 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0309.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0309.json" new file mode 100644 index 0000000000000000000000000000000000000000..b088159dc145b4e0b809a57944b68fe1fd0f573d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0309.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 11, + 65 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0310.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0310.json" new file mode 100644 index 0000000000000000000000000000000000000000..0cdd69da0f7baa340ca92945e7a1d7a5dc82dd35 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0310.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 99, + 28 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0311.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0311.json" new file mode 100644 index 0000000000000000000000000000000000000000..490b70a0102d854dc30672042bfdc6e5995974cf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0311.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 61, + 54 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0312.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0312.json" new file mode 100644 index 0000000000000000000000000000000000000000..75e71ddb42d76f7a2d84b4052235a7fdd863f529 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0312.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 56, + 74 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0313.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0313.json" new file mode 100644 index 0000000000000000000000000000000000000000..356a67a6cf5dc534c320867f5584753e877d9b3f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0313.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 14, + 0 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0314.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0314.json" new file mode 100644 index 0000000000000000000000000000000000000000..072966607674299f4f8d2e52fb34a34bcf9c20a6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0314.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 42, + 61 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0315.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0315.json" new file mode 100644 index 0000000000000000000000000000000000000000..4dc8f3d5812e9417f940bb0d3d2b559c4ed81e5a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0315.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 38, + 7 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0316.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0316.json" new file mode 100644 index 0000000000000000000000000000000000000000..08bd09d2fa30b1aa83e28a6fb9ae85fc8fac7dfb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0316.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 27, + 80 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0317.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0317.json" new file mode 100644 index 0000000000000000000000000000000000000000..88fe36c017aee7900dfec52e983645da5db00c03 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0317.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 12, + 65 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0318.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0318.json" new file mode 100644 index 0000000000000000000000000000000000000000..fd66cd2e4829a7e188ac17f3e73919f287ec9e68 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0318.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 14, + 70 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0319.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0319.json" new file mode 100644 index 0000000000000000000000000000000000000000..fde95d548eac79b90fa901277a555fb5c38575b3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0319.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 49, + 72 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0320.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0320.json" new file mode 100644 index 0000000000000000000000000000000000000000..ddda41edfd499c34f47d1c0d2fa15ccc005d79f6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0320.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 54, + 77 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0321.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0321.json" new file mode 100644 index 0000000000000000000000000000000000000000..bf3002950c77673059bb5e57f9e78b9427845a7c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0321.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 4, + 55 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0322.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0322.json" new file mode 100644 index 0000000000000000000000000000000000000000..ed91e1b6883f55bd303dd2add6d8646aa881261f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0322.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 9, + 98 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0323.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0323.json" new file mode 100644 index 0000000000000000000000000000000000000000..08eaf240bbf1c38a48c43ceee85d10a31e03ca51 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0323.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 34, + 71 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0324.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0324.json" new file mode 100644 index 0000000000000000000000000000000000000000..e760dad04fba9210aea4bc5354570584eaea9526 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0324.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 64, + 28 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0325.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0325.json" new file mode 100644 index 0000000000000000000000000000000000000000..57529ddde34f4d7ccc9da98706ff122ce1a1e5e1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0325.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 11, + 86 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0326.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0326.json" new file mode 100644 index 0000000000000000000000000000000000000000..59f16ebb260e98bce93f30c56bc111dd14672efa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0326.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 40, + 61 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0327.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0327.json" new file mode 100644 index 0000000000000000000000000000000000000000..f8f45fa18bcfedca626f4584f7651857a4d949fd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0327.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 29, + 8 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0328.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0328.json" new file mode 100644 index 0000000000000000000000000000000000000000..80d83e12bcbb4afd089a7655caf9900a6e57e8d0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0328.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 31, + 20 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0329.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0329.json" new file mode 100644 index 0000000000000000000000000000000000000000..b8eb2c3de0a36dd64025473707414007d005e441 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0329.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 53, + 53 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0330.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0330.json" new file mode 100644 index 0000000000000000000000000000000000000000..2fad228e07710f1d456d77bf3e530f17e4b12f46 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0330.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 96, + 15 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0331.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0331.json" new file mode 100644 index 0000000000000000000000000000000000000000..b6a5b01ef4f1ad0ccc2748a4eb652c1559dbf192 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0331.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 3, + 86 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0332.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0332.json" new file mode 100644 index 0000000000000000000000000000000000000000..6dcf56ed41a99aea7d3eec90b9f50625084279c0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0332.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 50, + 65 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0333.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0333.json" new file mode 100644 index 0000000000000000000000000000000000000000..e7ef3d94535491410536647b51019cad4f949503 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0333.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 19, + 93 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0334.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0334.json" new file mode 100644 index 0000000000000000000000000000000000000000..ce94fdd6f99dd2264432350c01d00e9bdde438db --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0334.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 65, + 97 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0335.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0335.json" new file mode 100644 index 0000000000000000000000000000000000000000..e77da8c0e15768618bdff101176b7db5c7d6f0fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0335.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 83, + 32 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0336.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0336.json" new file mode 100644 index 0000000000000000000000000000000000000000..56a152bab1db715cdbf61c9c092535f8afeff486 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0336.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 49, + 52 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0337.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0337.json" new file mode 100644 index 0000000000000000000000000000000000000000..41f1b97cf39fc537197b0da9c4db51e11a22395d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0337.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 94, + 39 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0338.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0338.json" new file mode 100644 index 0000000000000000000000000000000000000000..10be5db750bc445c365ebfec19f6bdf02e4817ee --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0338.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 58, + 67 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0339.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0339.json" new file mode 100644 index 0000000000000000000000000000000000000000..a5409764c6ba4af8568ddca9e1e8a42fd951ea61 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0339.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 76, + 62 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0340.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0340.json" new file mode 100644 index 0000000000000000000000000000000000000000..d04c29eb8bd11e8a0c960decce97d7d01c375af5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0340.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 55, + 92 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0341.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0341.json" new file mode 100644 index 0000000000000000000000000000000000000000..b33c8b145b8a4e2aedf99205dafb062831dc7730 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0341.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 47, + 75 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0342.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0342.json" new file mode 100644 index 0000000000000000000000000000000000000000..16eb46a682c8fe85abea1546ca8b7a826dafacce --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0342.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 93, + 64 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0343.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0343.json" new file mode 100644 index 0000000000000000000000000000000000000000..98054c28341d8b90776ffcaaa1c8c82c20bf0712 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0343.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 93, + 28 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0344.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0344.json" new file mode 100644 index 0000000000000000000000000000000000000000..e360bdec3a2b213abe92f854cd83707bf055b47c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0344.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 80, + 97 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0345.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0345.json" new file mode 100644 index 0000000000000000000000000000000000000000..cec1d267966d69316db0e90afb756f2840027a25 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0345.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 34, + 73 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0346.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0346.json" new file mode 100644 index 0000000000000000000000000000000000000000..77182f55886ceb012a0279ec23225e4238ae434a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0346.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 88, + 73 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0347.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0347.json" new file mode 100644 index 0000000000000000000000000000000000000000..755f270d54d93976d6a8f6cdc8bd2c2f168c5ef0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0347.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 49, + 97 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0348.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0348.json" new file mode 100644 index 0000000000000000000000000000000000000000..cafc494def442780037d2c6b498820f6cbe7504d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0348.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 23, + 7 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0349.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0349.json" new file mode 100644 index 0000000000000000000000000000000000000000..285376aa89a0201e7a43fd41778bda0c10bf0fc1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0349.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 60, + 31 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0350.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0350.json" new file mode 100644 index 0000000000000000000000000000000000000000..074cf6512c684c405244743a5def02af1b50e425 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0350.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 5, + 8 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0351.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0351.json" new file mode 100644 index 0000000000000000000000000000000000000000..f9aec546bc9b45eb1e80574a147830b59b123674 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0351.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 50, + 58 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0352.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0352.json" new file mode 100644 index 0000000000000000000000000000000000000000..5f533c1b6030c4041dae48bead408a2a7b3ac53b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0352.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 60, + 94 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0353.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0353.json" new file mode 100644 index 0000000000000000000000000000000000000000..7566fddbb794a311c17793bde33552cdaf0660b0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0353.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 56, + 76 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0354.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0354.json" new file mode 100644 index 0000000000000000000000000000000000000000..1ec01e30d54922e03b9bd92b2f95549e2650c596 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0354.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 95, + 2 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0355.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0355.json" new file mode 100644 index 0000000000000000000000000000000000000000..3646f734754fcaed0944bdfd06c2de3931578d0a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0355.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 46, + 50 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0356.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0356.json" new file mode 100644 index 0000000000000000000000000000000000000000..5ec185c391e3301987860c1ce76f3133473b4e0e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0356.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 66, + 95 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0357.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0357.json" new file mode 100644 index 0000000000000000000000000000000000000000..d6cd11f4e24c448a678822465a4436dc1240fab8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0357.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 46, + 94 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0358.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0358.json" new file mode 100644 index 0000000000000000000000000000000000000000..327d6febd80e0a8dece568c82437e04f7ea3cb28 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0358.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.1", + "shadow": "3.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 48, + 100 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0359.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0359.json" new file mode 100644 index 0000000000000000000000000000000000000000..a7a85db1bd4f7b9aa1b4342390d7d901f41b6a38 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0359.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 71, + 11 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0360.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0360.json" new file mode 100644 index 0000000000000000000000000000000000000000..714865d6fbcda458c6d26562c1fe86749090bd8e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0360.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 40, + 93 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0361.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0361.json" new file mode 100644 index 0000000000000000000000000000000000000000..b31c8b76f414cb13aed7e77a7f5e10d46e420f07 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0361.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 65, + 53 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0362.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0362.json" new file mode 100644 index 0000000000000000000000000000000000000000..40c7c3c8a6ff405c46887e2bc985a7b58223073f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0362.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 57, + 14 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0363.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0363.json" new file mode 100644 index 0000000000000000000000000000000000000000..f96cbdf77c11a8de6f48c7289e894c5d98d456f1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0363.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 25, + 45 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0364.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0364.json" new file mode 100644 index 0000000000000000000000000000000000000000..913965051ddfaaa2a5a4c25eb7b9995cfe2ea9cb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0364.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 83, + 76 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0365.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0365.json" new file mode 100644 index 0000000000000000000000000000000000000000..87f82c764db01cf826376f790613ac994d873c75 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0365.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 48, + 10 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0366.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0366.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac942e29c4b89d0f20bc4ffcf0f3aec119db79b9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0366.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 63, + 74 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0367.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0367.json" new file mode 100644 index 0000000000000000000000000000000000000000..e99fc38d2612d393e8c63948f096d3ada55ef0c2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0367.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 17, + 5 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0368.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0368.json" new file mode 100644 index 0000000000000000000000000000000000000000..975927aac1ad1a43566aa9fae5e399461ba164e6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0368.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 34, + 38 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0369.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0369.json" new file mode 100644 index 0000000000000000000000000000000000000000..8dcb5f9e10bae4440c12839f549ea002061d88f3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0369.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 12, + 19 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0370.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0370.json" new file mode 100644 index 0000000000000000000000000000000000000000..4fa77678eb5eec4c044bde802ff99a0089085ee5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0370.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 41, + 41 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0371.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0371.json" new file mode 100644 index 0000000000000000000000000000000000000000..95917d4db2cf25fb9ac25d64a2231ad9bd166749 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0371.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 62, + 83 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0372.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0372.json" new file mode 100644 index 0000000000000000000000000000000000000000..725aa5183ed43e284af14ce8b6441e639019c455 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0372.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 68, + 98 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0373.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0373.json" new file mode 100644 index 0000000000000000000000000000000000000000..45caa289b722fa7a8bc19bed28eec079cc522503 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0373.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 87, + 8 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0374.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0374.json" new file mode 100644 index 0000000000000000000000000000000000000000..62b974e53666e70b4d79450c72e3c84233dbb53b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0374.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 32, + 85 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0375.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0375.json" new file mode 100644 index 0000000000000000000000000000000000000000..1c11c095096654051bb1107f8055271cfc11432d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0375.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 45, + 55 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0376.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0376.json" new file mode 100644 index 0000000000000000000000000000000000000000..d4f867ebc03f05f5915fc6ab0206b6e9d9d3579c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0376.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 30, + 51 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0377.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0377.json" new file mode 100644 index 0000000000000000000000000000000000000000..76e98ce1eecb2e0cc90f74bc0f4aca010295b305 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0377.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 64, + 10 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0378.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0378.json" new file mode 100644 index 0000000000000000000000000000000000000000..6e9279c19dbc0f23452d0b64b6c05c71867a8e84 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0378.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 36, + 83 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0379.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0379.json" new file mode 100644 index 0000000000000000000000000000000000000000..0593ce5252d260f5f0a34637b94ed05f23f384e0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0379.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 21, + 78 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0380.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0380.json" new file mode 100644 index 0000000000000000000000000000000000000000..cdf9ca72db6e5a2130b8cab07057eda061da2717 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0380.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 35, + 44 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0381.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0381.json" new file mode 100644 index 0000000000000000000000000000000000000000..de1ced94643b0fb81db20e78e8acef440644475d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0381.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 68, + 66 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0382.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0382.json" new file mode 100644 index 0000000000000000000000000000000000000000..c2cc7f3d055cab74a95dd939b9ad30ebb0908105 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0382.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 38, + 62 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0383.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0383.json" new file mode 100644 index 0000000000000000000000000000000000000000..b5569e19bdf18fc56661a2db6c98b24e0c85572b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0383.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 51, + 39 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0384.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0384.json" new file mode 100644 index 0000000000000000000000000000000000000000..13cdd60af7f661a25959f7724707127fcb457751 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0384.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 20, + 14 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0385.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0385.json" new file mode 100644 index 0000000000000000000000000000000000000000..3f4dcbd0f5b0d9b41e265e7611b1b1a0d8e3928e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0385.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.3", + "shadow": "3.0", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 3, + 33 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0386.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0386.json" new file mode 100644 index 0000000000000000000000000000000000000000..6bd778b6ed6081da5eeaaa1a27d440afca96c33e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0386.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 14, + 28 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0387.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0387.json" new file mode 100644 index 0000000000000000000000000000000000000000..d65d10d9f3d99eb8f268712041553fa8c49538ad --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0387.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 64, + 81 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0388.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0388.json" new file mode 100644 index 0000000000000000000000000000000000000000..51c12332459070139bcee6693ddf9d07e2f2867f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0388.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 80, + 66 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0389.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0389.json" new file mode 100644 index 0000000000000000000000000000000000000000..834927dc73d5e7e328c60ac90dc962385023b84a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0389.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 30, + 66 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0390.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0390.json" new file mode 100644 index 0000000000000000000000000000000000000000..dbeae0331347f400ed2b0b5d8643f3b89c8cfd86 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0390.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 41, + 74 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0391.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0391.json" new file mode 100644 index 0000000000000000000000000000000000000000..1ce5ffefbcc74f20e4e9943454fee77177fed413 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0391.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 24, + 2 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0392.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0392.json" new file mode 100644 index 0000000000000000000000000000000000000000..2ad06c93250be9f56be4376632e566deb07ade45 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0392.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 90, + 89 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0393.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0393.json" new file mode 100644 index 0000000000000000000000000000000000000000..0a875b43f14310cf0daec9ecdac1db1a8b507036 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0393.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 4, + 44 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0394.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0394.json" new file mode 100644 index 0000000000000000000000000000000000000000..10173d0ff5d1fa2beab53ca6a76b2e796764bf33 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0394.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "3.0", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 48, + 18 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0395.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0395.json" new file mode 100644 index 0000000000000000000000000000000000000000..83f725dceb518cab0ba4c809a548f17300033b13 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0395.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 49, + 59 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0396.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0396.json" new file mode 100644 index 0000000000000000000000000000000000000000..4795ec5625bf16e69c2c1561954f40636ec316a1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0396.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 97, + 60 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0397.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0397.json" new file mode 100644 index 0000000000000000000000000000000000000000..8cd6e28ad72b1d020e3940bc7249275bdc40756d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0397.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 62, + 24 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0398.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0398.json" new file mode 100644 index 0000000000000000000000000000000000000000..085431a3ef8a002beacd55f7a7d31a945de64110 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0398.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 37, + 76 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0399.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0399.json" new file mode 100644 index 0000000000000000000000000000000000000000..f473af80f9acbed22eaa78483c5cd39bbf7f29cb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0399.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 26, + 94 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0400.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0400.json" new file mode 100644 index 0000000000000000000000000000000000000000..beefb69f17569ace41ce8d16790258d14aa163f7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0400.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 11, + 77 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0401.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0401.json" new file mode 100644 index 0000000000000000000000000000000000000000..720d7d40b4983b7150247c198c9d02b5098397cd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0401.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 28, + 18 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0402.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0402.json" new file mode 100644 index 0000000000000000000000000000000000000000..f519e5aea24156f657f25edc98f9da9c42f447f7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0402.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 5, + 44 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0403.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0403.json" new file mode 100644 index 0000000000000000000000000000000000000000..37399ac9d9d383704a6065dabc8308a80cf8b92d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0403.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 33, + 28 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0404.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0404.json" new file mode 100644 index 0000000000000000000000000000000000000000..eb2bbb1aab704aea57ec772809f978e160715b93 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0404.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 34, + 52 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0405.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0405.json" new file mode 100644 index 0000000000000000000000000000000000000000..8f3861a7f18d8a2ea298e33c4d965b5f325275ec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0405.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 23, + 67 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0406.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0406.json" new file mode 100644 index 0000000000000000000000000000000000000000..7e43d20f616b6e50ecfc15c84f9c8e635b85d4b6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0406.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 94, + 47 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0407.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0407.json" new file mode 100644 index 0000000000000000000000000000000000000000..c8137927fcbc41aece50b848e5aa4a933526d16a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0407.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 30, + 41 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0408.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0408.json" new file mode 100644 index 0000000000000000000000000000000000000000..552ea5a0d06e93bf559b08f31c1b0b49614f10e5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0408.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 7, + 69 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0409.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0409.json" new file mode 100644 index 0000000000000000000000000000000000000000..9e1b5c3d2a6c3cab6b564b94fc527e423a214852 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0409.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 69, + 69 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0410.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0410.json" new file mode 100644 index 0000000000000000000000000000000000000000..e2723d2d16d662bbf3bc9d6bb4fe2f026021c033 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0410.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 43, + 81 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0411.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0411.json" new file mode 100644 index 0000000000000000000000000000000000000000..26bc354195aa6adce1018d3f12e57315d1a0b6be --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0411.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 40, + 97 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0412.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0412.json" new file mode 100644 index 0000000000000000000000000000000000000000..eab15ddfeaa1612df5650cb69410689a43fc50c9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0412.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 4, + 44 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0413.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0413.json" new file mode 100644 index 0000000000000000000000000000000000000000..7ad6a9960fabb0919dc8be5ff4c2e81cdaa1112a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0413.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 74, + 39 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0414.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0414.json" new file mode 100644 index 0000000000000000000000000000000000000000..a67650251854a6cbad2b2eb372f9da781c2751bb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0414.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 56, + 49 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0415.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0415.json" new file mode 100644 index 0000000000000000000000000000000000000000..d2942eb4cc4206af45307fa0c48248dd0a792663 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0415.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 13, + 15 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0416.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0416.json" new file mode 100644 index 0000000000000000000000000000000000000000..f106d80e616cd4726d6d67c31248ec7b6394f247 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0416.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 28, + 14 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0417.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0417.json" new file mode 100644 index 0000000000000000000000000000000000000000..fa1c221782862e2f116cdf70e3cdaf620a8463c8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0417.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 85, + 75 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0418.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0418.json" new file mode 100644 index 0000000000000000000000000000000000000000..49bbbf9c9929320eda661a08bd9e3d4922854423 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0418.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 75, + 11 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0419.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0419.json" new file mode 100644 index 0000000000000000000000000000000000000000..63d23bab9165cc242a50a27f070b34bbfa24d6c7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0419.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 7, + 17 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0420.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0420.json" new file mode 100644 index 0000000000000000000000000000000000000000..c76548a69c885db68c59ad253a2e4efc0e766869 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0420.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 19, + 90 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0421.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0421.json" new file mode 100644 index 0000000000000000000000000000000000000000..c993266b6e6aba848f07aa3a7b260150176d5e60 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0421.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 5, + 7 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0422.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0422.json" new file mode 100644 index 0000000000000000000000000000000000000000..0a54ea915fd74391f002647907d94dbfb0b25b2a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0422.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 88, + 84 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0423.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0423.json" new file mode 100644 index 0000000000000000000000000000000000000000..0c464fec10c3b4db4c9948f3d0962ab639f612f9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0423.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 21, + 49 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0424.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0424.json" new file mode 100644 index 0000000000000000000000000000000000000000..eba65f2914c96fc0c07489f71c4e8d68c736ec5f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0424.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 58, + 75 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0425.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0425.json" new file mode 100644 index 0000000000000000000000000000000000000000..35b1f2a4e3831bfda34026a162b3ec8f1c5ab69c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0425.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 69, + 98 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0426.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0426.json" new file mode 100644 index 0000000000000000000000000000000000000000..486feeb5a646baf7586258d1d34b8b0a3ac591ec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0426.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 72, + 61 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0427.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0427.json" new file mode 100644 index 0000000000000000000000000000000000000000..e55b247f22bc1f2be9a0bca096fead0b0a41bdb0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0427.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 22, + 68 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0428.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0428.json" new file mode 100644 index 0000000000000000000000000000000000000000..6c4a983f766a530d38017f03a53b0407f9078580 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0428.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 92, + 8 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0429.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0429.json" new file mode 100644 index 0000000000000000000000000000000000000000..c8c98f7bd83fad987f8ccef948dbfaa5eb06edf2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0429.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 57, + 17 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0430.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0430.json" new file mode 100644 index 0000000000000000000000000000000000000000..1e996095e9553ced5cabb189b4c370e0476b210b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0430.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 71, + 95 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0431.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0431.json" new file mode 100644 index 0000000000000000000000000000000000000000..a61c8f39297fa74c9b2afc06dc15012a1704f005 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0431.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 76, + 20 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0432.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0432.json" new file mode 100644 index 0000000000000000000000000000000000000000..14d1394b8cc252d5bd208bd5d6b6c2589dfd02d9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0432.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 65, + 83 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0433.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0433.json" new file mode 100644 index 0000000000000000000000000000000000000000..72a71e83d783ef6a3dfab3a712fc61484b7cf0e4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0433.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 39, + 96 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0434.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0434.json" new file mode 100644 index 0000000000000000000000000000000000000000..c4fee3f9c69b82f120b2aee6fd6262699865e6ae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0434.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 66, + 29 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0435.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0435.json" new file mode 100644 index 0000000000000000000000000000000000000000..e2692abbe52fdbf61352bf38d7f9aa62c64ea6d9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0435.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 1, + 6 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0436.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0436.json" new file mode 100644 index 0000000000000000000000000000000000000000..79133638535e57997ef216e0f715c8bb387beb62 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0436.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 66, + 48 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0437.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0437.json" new file mode 100644 index 0000000000000000000000000000000000000000..5c14209ecf097fcdfb40c06fe471414e77718ea5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0437.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 30, + 32 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0438.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0438.json" new file mode 100644 index 0000000000000000000000000000000000000000..8df7d267e628c7e439d6b0ee202ddc234e86869f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0438.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 14, + 95 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0439.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0439.json" new file mode 100644 index 0000000000000000000000000000000000000000..21301b714552b63e88ae1e796b2651620f5d4f65 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0439.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 20, + 84 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0440.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0440.json" new file mode 100644 index 0000000000000000000000000000000000000000..0209e41f181d06ea631c6d41dcc1ab6fd985d50a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0440.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 57, + 11 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0441.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0441.json" new file mode 100644 index 0000000000000000000000000000000000000000..f810fe9828b072aea86efff2e46e5351f54d10f3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0441.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 6, + 39 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0442.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0442.json" new file mode 100644 index 0000000000000000000000000000000000000000..dcd472a2eef3fa3c269fa4f8b2a8d2cb5a62b18c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0442.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 27, + 17 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0443.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0443.json" new file mode 100644 index 0000000000000000000000000000000000000000..d1c682a0f45d7f7221403866a614b35484f45522 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0443.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 21, + 80 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0444.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0444.json" new file mode 100644 index 0000000000000000000000000000000000000000..9c527d481c1464a9d0e75e3bc46488c38370a92c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0444.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 5, + 93 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0445.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0445.json" new file mode 100644 index 0000000000000000000000000000000000000000..a78c424672e3565eb86b99f8e3254f7325f8b9c4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0445.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 52, + 1 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0446.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0446.json" new file mode 100644 index 0000000000000000000000000000000000000000..e075d93868196a4980aa074ab5facfc0974517d7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0446.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 28, + 70 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0447.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0447.json" new file mode 100644 index 0000000000000000000000000000000000000000..5326dc16c20dcd02af844207da60e166b3839b6c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0447.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 46, + 87 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0448.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0448.json" new file mode 100644 index 0000000000000000000000000000000000000000..27075012bfdf6b52f57ac075dae5911e64e5758f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0448.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 26, + 97 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0449.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0449.json" new file mode 100644 index 0000000000000000000000000000000000000000..11b1f6b51dcb2fd0128b7acf863ed94fed5809ed --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0449.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 77, + 34 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0450.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0450.json" new file mode 100644 index 0000000000000000000000000000000000000000..c87432d5209aa56ec1375876ffcf813374b8875c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0450.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 48, + 61 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0451.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0451.json" new file mode 100644 index 0000000000000000000000000000000000000000..1a69beb1cb59ff838016ba8bc2cef9c9f0ab40f6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0451.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 75, + 85 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0452.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0452.json" new file mode 100644 index 0000000000000000000000000000000000000000..a8719cba10ed18a1f466c67ec575deb8d0232b74 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0452.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 74, + 84 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0453.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0453.json" new file mode 100644 index 0000000000000000000000000000000000000000..b80f6bf890e77782f4e2f190d4d1455e8162ef86 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0453.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 36, + 30 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0454.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0454.json" new file mode 100644 index 0000000000000000000000000000000000000000..e2abcd2193da228ee297c38d319d945d3c3f2986 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0454.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 10, + 78 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0455.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0455.json" new file mode 100644 index 0000000000000000000000000000000000000000..0ad1ec830980880b9d06d219f78d986168c0c5e5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0455.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 34, + 30 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0456.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0456.json" new file mode 100644 index 0000000000000000000000000000000000000000..49e6b44595b0de95de3bcc0342625d58a1bb3f08 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0456.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 82, + 82 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0457.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0457.json" new file mode 100644 index 0000000000000000000000000000000000000000..be65c532720ca2fc2a95b5e66b272935357e792a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0457.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 30, + 86 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0458.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0458.json" new file mode 100644 index 0000000000000000000000000000000000000000..09ead071abb91d8a80b566e830fbdba770f4ff08 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0458.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 5, + 54 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0459.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0459.json" new file mode 100644 index 0000000000000000000000000000000000000000..dee8b2d513dee8da45991754c4fd05f24540f978 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0459.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 49, + 26 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0460.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0460.json" new file mode 100644 index 0000000000000000000000000000000000000000..85b07c46d90d6313b0337043f9ee009ec1c84728 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0460.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 98, + 27 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0461.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0461.json" new file mode 100644 index 0000000000000000000000000000000000000000..2d133f753b07fc86f42aa1135760fa8b40dc4c71 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0461.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 10, + 6 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0462.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0462.json" new file mode 100644 index 0000000000000000000000000000000000000000..358adb28c3a0aae5f499e7affc3082d946844c7a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0462.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 23, + 68 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0463.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0463.json" new file mode 100644 index 0000000000000000000000000000000000000000..84fdd84f429a53868e07948cbd2f8b736443cefd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0463.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.9", + "shadow": "3.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 15, + 18 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0464.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0464.json" new file mode 100644 index 0000000000000000000000000000000000000000..893fc1743a3db306d1d163bf344aa8cc2b3cc489 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0464.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 70, + 52 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0465.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0465.json" new file mode 100644 index 0000000000000000000000000000000000000000..5d16c4cc6f2fa4e3c641389c13721e16937a81c5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0465.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 20, + 91 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0466.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0466.json" new file mode 100644 index 0000000000000000000000000000000000000000..90d493d4dbfccfe27ff9261540a51e63cbb01e67 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0466.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 2, + 100 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0467.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0467.json" new file mode 100644 index 0000000000000000000000000000000000000000..8b9e5ef556cf602ccf761861b298355e2d58a746 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0467.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 53, + 3 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0468.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0468.json" new file mode 100644 index 0000000000000000000000000000000000000000..cf0351d8541403d143d5f8b2eb56fce5d00462ae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0468.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 78, + 86 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0469.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0469.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac2e232a15555680ab62b1358ec8ab427e2b8530 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0469.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 13, + 10 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0470.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0470.json" new file mode 100644 index 0000000000000000000000000000000000000000..4a7065cb1b27f1a19069f85d71b347ae11c54da3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0470.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 56, + 88 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0471.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0471.json" new file mode 100644 index 0000000000000000000000000000000000000000..fd5707a81650a149381b116d3227ebea8e8bc7ac --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0471.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 25, + 54 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0472.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0472.json" new file mode 100644 index 0000000000000000000000000000000000000000..2d70334f17e6e77fa7c4764806c6efd9761a6734 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0472.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 86, + 47 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0473.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0473.json" new file mode 100644 index 0000000000000000000000000000000000000000..4abec67f97d8281efc2c6ac290cfe78d6a15fb2d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0473.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 97, + 74 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0474.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0474.json" new file mode 100644 index 0000000000000000000000000000000000000000..a7af0c0e330ef3d9c65f2bb4de1e9cf2c7cb5432 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0474.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 1, + 92 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0475.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0475.json" new file mode 100644 index 0000000000000000000000000000000000000000..4acd86e72c6bb4194be2554dbc7cccfdc45be02f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0475.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 79, + 17 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0476.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0476.json" new file mode 100644 index 0000000000000000000000000000000000000000..d91c3cecccb7f68a7454f2c98c3873a2d44b8a33 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0476.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 88, + 60 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0477.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0477.json" new file mode 100644 index 0000000000000000000000000000000000000000..76005af7d978f1ce24340f88018d02798c76459f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0477.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 54, + 25 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0478.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0478.json" new file mode 100644 index 0000000000000000000000000000000000000000..321afe2342d86f7022f56852bd6f9cbc1e826a2f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0478.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 84, + 85 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0479.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0479.json" new file mode 100644 index 0000000000000000000000000000000000000000..590d044648a51d4c5957e9f97fbdf5573dcfacf0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0479.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 92, + 8 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0480.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0480.json" new file mode 100644 index 0000000000000000000000000000000000000000..7f41a2fa8e8d024137bc17ce7da148b7110a29b4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0480.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 48, + 22 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0481.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0481.json" new file mode 100644 index 0000000000000000000000000000000000000000..9861bc9d6e52c6b5796d1e9cb8fc6cbb9a663f7c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0481.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 90, + 96 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0482.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0482.json" new file mode 100644 index 0000000000000000000000000000000000000000..d827a88529616b39fa02af890c6c81001a43a700 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0482.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 19, + 26 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0483.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0483.json" new file mode 100644 index 0000000000000000000000000000000000000000..bc8e8e23a927a93f58fbbc3df6e9173a83be6cb1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0483.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 97, + 7 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0484.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0484.json" new file mode 100644 index 0000000000000000000000000000000000000000..a05f39fb72a703781e1ef8833029d20890a4a0ae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0484.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 15, + 97 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0485.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0485.json" new file mode 100644 index 0000000000000000000000000000000000000000..735841a3156d71647858542814020bcc8d7172e4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0485.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 11, + 32 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0486.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0486.json" new file mode 100644 index 0000000000000000000000000000000000000000..155e6e146e83f0c5b94f74e9fadf5dfc328314d7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0486.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 19, + 9 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0487.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0487.json" new file mode 100644 index 0000000000000000000000000000000000000000..42008c603552d0514832ee3637bc538d73031b24 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0487.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 57, + 21 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0488.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0488.json" new file mode 100644 index 0000000000000000000000000000000000000000..a7623c3196f3ee1ccbe579c64fa3c8c0b1b34ea4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0488.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 41, + 35 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0489.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0489.json" new file mode 100644 index 0000000000000000000000000000000000000000..20dcf576ef49477478fd0549d6845ee52583b25c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0489.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 54, + 13 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0490.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0490.json" new file mode 100644 index 0000000000000000000000000000000000000000..eb4beb02a2cb6a71f0ebd2e58d812a04b06d80bf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0490.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 87, + 63 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0491.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0491.json" new file mode 100644 index 0000000000000000000000000000000000000000..477be073d1e49b38296d97c89b89ef968cf586ee --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0491.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 28, + 80 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0492.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0492.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f55347435bf37fefdfd6bbc5a028a6601c0a9eb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0492.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 32, + 98 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0493.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0493.json" new file mode 100644 index 0000000000000000000000000000000000000000..ab27d619473847f58834986487937c572d2539ef --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0493.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 90, + 90 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0494.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0494.json" new file mode 100644 index 0000000000000000000000000000000000000000..4b49665138aea92c3eea8ef4b69f3329df6fa68e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0494.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 99, + 57 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0495.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0495.json" new file mode 100644 index 0000000000000000000000000000000000000000..d28a357d4c2dd9736b45b54d4e177747fc94dee2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0495.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 46, + 94 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0496.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0496.json" new file mode 100644 index 0000000000000000000000000000000000000000..18656a28cca619af17c7b40baab2e4b073481386 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0496.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 17, + 35 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0497.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0497.json" new file mode 100644 index 0000000000000000000000000000000000000000..ef623094108ef6d17a71414e7a960bc37f14c01e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0497.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 89, + 50 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0498.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0498.json" new file mode 100644 index 0000000000000000000000000000000000000000..e050094b074bfaa20350b16e15c7530410f33605 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0498.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 16, + 91 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0499.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0499.json" new file mode 100644 index 0000000000000000000000000000000000000000..0d2141a7a6895c6efd4aa69aff1f9a3c38355fe8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0499.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 79, + 82 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0500.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0500.json" new file mode 100644 index 0000000000000000000000000000000000000000..e946cc5eed7bc43a7ee8023d0c62df4ce0345e00 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0500.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 57, + 60 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0501.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0501.json" new file mode 100644 index 0000000000000000000000000000000000000000..b5a4b0576a5462c47fc7fe9537dc5de26bb2b735 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0501.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 100, + 25 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0502.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0502.json" new file mode 100644 index 0000000000000000000000000000000000000000..c1de97adcbd61d1f694ca5a85ff4bb8252bd72d5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0502.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 39, + 84 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0503.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0503.json" new file mode 100644 index 0000000000000000000000000000000000000000..e42aa3af934693df892ae74a22e493edb8f5e713 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0503.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 60, + 19 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0504.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0504.json" new file mode 100644 index 0000000000000000000000000000000000000000..cf3894b7aa61bbb48843926791ebc1919f06009a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0504.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 71, + 71 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0505.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0505.json" new file mode 100644 index 0000000000000000000000000000000000000000..9790944fbbb8b7961454a910da21211a7eb61cfc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0505.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 7, + 27 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0506.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0506.json" new file mode 100644 index 0000000000000000000000000000000000000000..03a8d1d1ae654379b830845415d03c333622fb23 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0506.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 18, + 58 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0507.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0507.json" new file mode 100644 index 0000000000000000000000000000000000000000..17b6ccc53bb3f5d4be2a0a3baca658b96806e661 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0507.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 13, + 72 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0508.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0508.json" new file mode 100644 index 0000000000000000000000000000000000000000..3a9390965bef478a83dc666a4a863fc35175f6cf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0508.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 45, + 83 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0509.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0509.json" new file mode 100644 index 0000000000000000000000000000000000000000..b6200afecc1d313b8fe2bc6964c5292ace9ebd0d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0509.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 2, + 97 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0510.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0510.json" new file mode 100644 index 0000000000000000000000000000000000000000..981d5ae6ebc8460b0a2b5410443fa4315cab007a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0510.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 9, + 29 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0511.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0511.json" new file mode 100644 index 0000000000000000000000000000000000000000..a02dbbcffc0bef8d606c608ba4f903db3780d3a2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0511.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 29, + 87 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0512.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0512.json" new file mode 100644 index 0000000000000000000000000000000000000000..b90b0dde2afd52da1c19273cfcf99f2c4d4d2b1a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0512.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 23, + 95 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0513.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0513.json" new file mode 100644 index 0000000000000000000000000000000000000000..e48f713641d24d9ae6a087697934159346900d00 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0513.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.8", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 38, + 66 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0514.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0514.json" new file mode 100644 index 0000000000000000000000000000000000000000..2d16ad554082009ddac09d902742bb46d3667f3b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0514.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 94, + 94 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0515.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0515.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac942a0f26696aee9797148a60243ec5e813375d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0515.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 36, + 36 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0516.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0516.json" new file mode 100644 index 0000000000000000000000000000000000000000..c75a725b34881b9274703c073609f53c0481e4c2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0516.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 92, + 18 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0517.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0517.json" new file mode 100644 index 0000000000000000000000000000000000000000..df1a844de198ad139896f4aa549c347b68525e1e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0517.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 80, + 79 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0518.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0518.json" new file mode 100644 index 0000000000000000000000000000000000000000..e7a5cf40cf7e99bd1617116701adcc887e992548 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0518.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 43, + 36 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0519.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0519.json" new file mode 100644 index 0000000000000000000000000000000000000000..d069f9cb6f75b60788df839df4a2d6c1861e1c5e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0519.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 29, + 8 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0520.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0520.json" new file mode 100644 index 0000000000000000000000000000000000000000..473d5586e385bbfd3b7596f99bc8eb04a7854c41 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0520.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 57, + 42 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0521.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0521.json" new file mode 100644 index 0000000000000000000000000000000000000000..edda4e5875b58c700f4bdededcd89b2da8388754 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0521.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 23, + 32 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0522.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0522.json" new file mode 100644 index 0000000000000000000000000000000000000000..7d282030b15c1238501baa6563d2db9a4cea40d8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0522.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 35, + 41 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0523.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0523.json" new file mode 100644 index 0000000000000000000000000000000000000000..70b8f43ef6f49bae2abb17aca64163fbba900395 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0523.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 9, + 33 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0524.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0524.json" new file mode 100644 index 0000000000000000000000000000000000000000..d1ceb471089deb2a6f0646e4957a0f9c9530e088 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0524.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 46, + 5 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0525.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0525.json" new file mode 100644 index 0000000000000000000000000000000000000000..0ff96404245d35b977fedc4c33331beedcd0bf6a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0525.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 7, + 79 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0526.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0526.json" new file mode 100644 index 0000000000000000000000000000000000000000..5e9b16f03e3900a4f1f1b8abc4250aad7e81176d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0526.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 92, + 38 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0527.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0527.json" new file mode 100644 index 0000000000000000000000000000000000000000..d046d8dea6059b05ace75fb18ccb49d246e3acce --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0527.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 0, + 53 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0528.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0528.json" new file mode 100644 index 0000000000000000000000000000000000000000..a6ad10d2d61597cd67ccc234026c00d4b35d731e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0528.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 59, + 11 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0529.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0529.json" new file mode 100644 index 0000000000000000000000000000000000000000..2bc1c2ac9a7e3eac7417e5fe16518e5c70a00dd5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0529.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 66, + 16 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0530.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0530.json" new file mode 100644 index 0000000000000000000000000000000000000000..161f2dfb867e141144c5470aa396d4e9b029c1eb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0530.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 5, + 12 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0531.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0531.json" new file mode 100644 index 0000000000000000000000000000000000000000..2cf8a2c1ebd5494b72c67323a71f9c0a0f29704c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0531.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 80, + 95 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0532.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0532.json" new file mode 100644 index 0000000000000000000000000000000000000000..ee2898a6d888498db9edc1e0b07dbaf3cb625d58 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0532.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 17, + 51 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0533.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0533.json" new file mode 100644 index 0000000000000000000000000000000000000000..c25ec365959cb3682ce9c542962ac553f310b8f4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0533.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 24, + 25 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0534.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0534.json" new file mode 100644 index 0000000000000000000000000000000000000000..3356b7e66f521064ae738dca56a8448edf849484 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0534.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 54, + 18 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0535.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0535.json" new file mode 100644 index 0000000000000000000000000000000000000000..65fce563560a0895879bea5f767667a775528e71 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0535.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 98, + 65 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0536.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0536.json" new file mode 100644 index 0000000000000000000000000000000000000000..9b67eb8ee69d0eca70d64a71ee0a9ab1b99358f6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0536.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 55, + 11 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0537.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0537.json" new file mode 100644 index 0000000000000000000000000000000000000000..55917e450365da01fc78509a9d174f455309e0f6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0537.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 66, + 15 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0538.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0538.json" new file mode 100644 index 0000000000000000000000000000000000000000..77f2f655ebda909116eaa6a95a96bb7e88b1d6bd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0538.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 87, + 46 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0539.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0539.json" new file mode 100644 index 0000000000000000000000000000000000000000..63a2db3c69dba3661e8e57ced2e319456121c86b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0539.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 41, + 26 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0540.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0540.json" new file mode 100644 index 0000000000000000000000000000000000000000..b75e094403a7d8a3859c7f408595a915e6ca8981 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0540.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 74, + 2 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0541.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0541.json" new file mode 100644 index 0000000000000000000000000000000000000000..15e3f54005f4572ec8aba170c4817447a400b028 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0541.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 69, + 100 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0542.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0542.json" new file mode 100644 index 0000000000000000000000000000000000000000..41bff9914523b0199f2bbc51cbc0ff17ed382fd2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0542.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 76, + 91 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0543.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0543.json" new file mode 100644 index 0000000000000000000000000000000000000000..ec32f710dbb9b4c23cc7e4fc8b1029c7e7e6519d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0543.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 59, + 96 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0544.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0544.json" new file mode 100644 index 0000000000000000000000000000000000000000..54b678eb39d199dfb875602ebdc7b2c0cac0cc7d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0544.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 24, + 59 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0545.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0545.json" new file mode 100644 index 0000000000000000000000000000000000000000..5ed8b4c70098a89cff546cca70738c235fb03e1c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0545.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 53, + 63 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0546.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0546.json" new file mode 100644 index 0000000000000000000000000000000000000000..50ef0d8c012137a2c62829724876f291453d6f0f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0546.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 6, + 41 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0547.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0547.json" new file mode 100644 index 0000000000000000000000000000000000000000..527104064837394085de8a98df8b97ad0d0108ae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0547.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 7, + 6 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0548.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0548.json" new file mode 100644 index 0000000000000000000000000000000000000000..d954d5fb45ca0cf0e8d48d1b0b2447becf0bb5e4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0548.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 85, + 78 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0549.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0549.json" new file mode 100644 index 0000000000000000000000000000000000000000..6261853e88032a63ac145137832ff8f1651e9c5b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0549.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 3, + 4 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0550.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0550.json" new file mode 100644 index 0000000000000000000000000000000000000000..b4f9b268df6ace4e87b6873177057a066e6852fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0550.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 4, + 70 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0551.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0551.json" new file mode 100644 index 0000000000000000000000000000000000000000..1d5272842b36141dc2bbae627ed5ff5666328e8a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0551.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito Sans", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 32, + 32 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0552.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0552.json" new file mode 100644 index 0000000000000000000000000000000000000000..e353dee1f332a46b9285715a2b155eaad6ccc858 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0552.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 28, + 16 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0553.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0553.json" new file mode 100644 index 0000000000000000000000000000000000000000..01dbe65b50809fa2386f197f776315ae514b93a1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0553.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 75, + 82 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0554.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0554.json" new file mode 100644 index 0000000000000000000000000000000000000000..cffa0bddccf120596b5548c6fdd4c30c2d8e177c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0554.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.0", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 14, + 4 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0555.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0555.json" new file mode 100644 index 0000000000000000000000000000000000000000..eda9df30a58e10a99b4e5eb74f5700075d1225e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0555.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 31, + 29 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0556.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0556.json" new file mode 100644 index 0000000000000000000000000000000000000000..c26d3ba555fff50848e6dab0e1684362a2a345f8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0556.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 28, + 97 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0557.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0557.json" new file mode 100644 index 0000000000000000000000000000000000000000..0c662af8341b497b51bbe3937033f4199a94b9ed --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0557.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 14, + 50 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0558.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0558.json" new file mode 100644 index 0000000000000000000000000000000000000000..fe9c2cf3bf6f1a30d1c6b0cd8a02073ab3edb7dd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0558.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 41, + 90 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0559.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0559.json" new file mode 100644 index 0000000000000000000000000000000000000000..21ac13bc6e73de8e4ae23cba534061de9185e129 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0559.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 39, + 22 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0560.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0560.json" new file mode 100644 index 0000000000000000000000000000000000000000..96c3dcbee692431b0227d60ee623a124e257413c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0560.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 97, + 3 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0561.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0561.json" new file mode 100644 index 0000000000000000000000000000000000000000..144f02c25002f2e6c544c5353b7f185f1a8e50d8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0561.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 64, + 40 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0562.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0562.json" new file mode 100644 index 0000000000000000000000000000000000000000..3a16604aa68bb9010e6f87285e3aece5fb5c7ef3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0562.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 81, + 4 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0563.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0563.json" new file mode 100644 index 0000000000000000000000000000000000000000..05e14eee1ec12e804624068f49c158e43f7f7399 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0563.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 97, + 64 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0564.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0564.json" new file mode 100644 index 0000000000000000000000000000000000000000..cd20b0a2f7aeecf266919ffdc4f324b7092e34dd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0564.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 70, + 73 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0565.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0565.json" new file mode 100644 index 0000000000000000000000000000000000000000..eae6f249650fbe58ae1a35b72cd47f0a1352e432 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0565.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 35, + 88 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0566.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0566.json" new file mode 100644 index 0000000000000000000000000000000000000000..d3d37d8c67baa3c95c01010a1fbe051074994b84 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0566.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 31, + 60 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0567.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0567.json" new file mode 100644 index 0000000000000000000000000000000000000000..ed88b0b09cd8b41588a6e2e62aeb5ecacd6fc665 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0567.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 9, + 61 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0568.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0568.json" new file mode 100644 index 0000000000000000000000000000000000000000..9d875a008350a0a20afd42d116945475b1e151d9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0568.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 46, + 93 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0569.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0569.json" new file mode 100644 index 0000000000000000000000000000000000000000..258030c93b1332b9becf9f5830fd35110e17e376 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0569.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 99, + 93 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0570.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0570.json" new file mode 100644 index 0000000000000000000000000000000000000000..b4eabe6dc5f1217ef9c35e08057e4c2571ebf232 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0570.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 39, + 28 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0571.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0571.json" new file mode 100644 index 0000000000000000000000000000000000000000..bf88767879706db627afb11a0a5846ad234b087e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0571.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 44, + 15 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0572.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0572.json" new file mode 100644 index 0000000000000000000000000000000000000000..b0306d934794ac0ccecb701320db6e6e8d2cc4b7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0572.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 23, + 70 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0573.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0573.json" new file mode 100644 index 0000000000000000000000000000000000000000..b560cb3fa610638faaa2825ac9a75335579c0720 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0573.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 68, + 70 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0574.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0574.json" new file mode 100644 index 0000000000000000000000000000000000000000..cd4791ee3d30b08f58983d7c5bdda6561651e172 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0574.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 17, + 86 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0575.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0575.json" new file mode 100644 index 0000000000000000000000000000000000000000..59fac96f169504f20d98ae5954af70beab14251c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0575.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 23, + 41 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0576.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0576.json" new file mode 100644 index 0000000000000000000000000000000000000000..eb843ce78794e95a99273027ba11f5c5c40456f1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0576.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 52, + 35 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0577.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0577.json" new file mode 100644 index 0000000000000000000000000000000000000000..c52d1b45359bccbc8d4bcd18d6a212a07c7623df --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0577.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 57, + 85 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0578.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0578.json" new file mode 100644 index 0000000000000000000000000000000000000000..38995c6985899464bf8c6f380bcd85977a8cdd1e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0578.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 28, + 29 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0579.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0579.json" new file mode 100644 index 0000000000000000000000000000000000000000..f18c386dc28379c6f81001635dcdaea7aa6fbab8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0579.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 22, + 25 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0580.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0580.json" new file mode 100644 index 0000000000000000000000000000000000000000..613b2a06e95e38aa5a86bfdde37764325c01910b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0580.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 34, + 34 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0581.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0581.json" new file mode 100644 index 0000000000000000000000000000000000000000..4c71b8ed6c0f5ae3d71dca7ff2f3d2c2c0e9ac97 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0581.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 2, + 22 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0582.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0582.json" new file mode 100644 index 0000000000000000000000000000000000000000..eeac191c1a200a0a4bf74a5c30545a564c2dfc02 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0582.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 29, + 2 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0583.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0583.json" new file mode 100644 index 0000000000000000000000000000000000000000..47eb55c2b54cd7951e455958c8c6975717dd9e39 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0583.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playwrite DK Uloopet Guides", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 46, + 62 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0584.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0584.json" new file mode 100644 index 0000000000000000000000000000000000000000..49d1dc67997504e61f5a704228350d46582fc347 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0584.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 47, + 91 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0585.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0585.json" new file mode 100644 index 0000000000000000000000000000000000000000..b275bc6867df68d9f9304129cb21b6b16bfeec2e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0585.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 100, + 35 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0586.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0586.json" new file mode 100644 index 0000000000000000000000000000000000000000..1254e0c38185135cbeeb97d3da90d7a739387506 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0586.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 76, + 81 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0587.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0587.json" new file mode 100644 index 0000000000000000000000000000000000000000..0001da556ccba4e018182264429f4a21d6848ed6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0587.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 75, + 8 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0588.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0588.json" new file mode 100644 index 0000000000000000000000000000000000000000..19447517792440a6e88f8c748b09039c50f8014a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0588.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 42, + 94 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0589.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0589.json" new file mode 100644 index 0000000000000000000000000000000000000000..f2288adf41cb0658d4f1fcfcba19a174cd3c300b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0589.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 26, + 89 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0590.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0590.json" new file mode 100644 index 0000000000000000000000000000000000000000..69ed2d56e83d32f54ed19ee9343bc475d335c1fc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0590.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 33, + 85 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0591.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0591.json" new file mode 100644 index 0000000000000000000000000000000000000000..36dcc4a543ab76d540d1cd5cdf63d7b0eec53347 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0591.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 34, + 42 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0592.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0592.json" new file mode 100644 index 0000000000000000000000000000000000000000..526a459697eb6ea24e8fbc90d823f961ad800c96 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0592.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 70, + 26 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0593.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0593.json" new file mode 100644 index 0000000000000000000000000000000000000000..b4829a0e01d88de71d02bead3a1a2e1b28a39233 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0593.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 54, + 74 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0594.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0594.json" new file mode 100644 index 0000000000000000000000000000000000000000..f325934bece414bf9c7d9ce32329923c36a7c66a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0594.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 9, + 95 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0595.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0595.json" new file mode 100644 index 0000000000000000000000000000000000000000..c32cb79aec49637c7dce3d3ce0761abbd6c80df0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0595.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 33, + 37 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0596.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0596.json" new file mode 100644 index 0000000000000000000000000000000000000000..e1e96197ef9ed74d941a44af817d9b9fb98699d7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0596.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 91, + 84 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0597.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0597.json" new file mode 100644 index 0000000000000000000000000000000000000000..169863476e6f0f5f437094913ec084e24451eb5b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0597.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 2, + 90 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0598.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0598.json" new file mode 100644 index 0000000000000000000000000000000000000000..3583430d73605b66afa6e8b18cda72f4f95af215 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0598.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Padauk", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 71, + 84 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0599.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0599.json" new file mode 100644 index 0000000000000000000000000000000000000000..7371d398cda0f448a3028c20601daad994d783a0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0599.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 100, + 70 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0600.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0600.json" new file mode 100644 index 0000000000000000000000000000000000000000..7f6a4bbfa61274548e81932ecbb612785c31e884 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0600.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 77, + 57 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0601.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0601.json" new file mode 100644 index 0000000000000000000000000000000000000000..392d105b809ea1320f5c4b43ef066ec08ad130e3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0601.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 0, + 64 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0602.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0602.json" new file mode 100644 index 0000000000000000000000000000000000000000..76eb5e53490247412781ad1fcb8ae4441b5176a4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0602.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "3.0", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 79, + 66 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0603.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0603.json" new file mode 100644 index 0000000000000000000000000000000000000000..e1228a11fcadd85297eae8a56816a1f9c3c75939 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0603.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 3, + 78 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0604.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0604.json" new file mode 100644 index 0000000000000000000000000000000000000000..688b92b56b85a7070718513d3887a347337887bd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0604.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 92, + 26 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0605.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0605.json" new file mode 100644 index 0000000000000000000000000000000000000000..ab2cad379995d33c536eac2c45a5fd43365a04b7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0605.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 84, + 18 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0606.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0606.json" new file mode 100644 index 0000000000000000000000000000000000000000..5d1e26b8c302eabe695e61e547060225ceadffb3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0606.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 70, + 0 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0607.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0607.json" new file mode 100644 index 0000000000000000000000000000000000000000..be367c87d91844a9dc0282898a4d731c72094ab1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0607.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 53, + 57 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0608.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0608.json" new file mode 100644 index 0000000000000000000000000000000000000000..8f5a51e5e6d62a5a1abbe57df1ee441d619b6360 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0608.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 83, + 79 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0609.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0609.json" new file mode 100644 index 0000000000000000000000000000000000000000..a18275485cfbaf326ed698325e49326947553b40 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0609.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 24, + 48 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0610.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0610.json" new file mode 100644 index 0000000000000000000000000000000000000000..3d5d00343c4474dc25f892cd164ce0229faa9f5e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0610.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 57, + 87 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0611.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0611.json" new file mode 100644 index 0000000000000000000000000000000000000000..e744487968368c9b50085b85803e2c0d58e93b74 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0611.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 19, + 63 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0612.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0612.json" new file mode 100644 index 0000000000000000000000000000000000000000..6df004191cb10f1f3f36b322971cf1114018676f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0612.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 13, + 13 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0613.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0613.json" new file mode 100644 index 0000000000000000000000000000000000000000..86cd7720639012ab76dfaa094c0597e6cd5f5956 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0613.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 38, + 20 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0614.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0614.json" new file mode 100644 index 0000000000000000000000000000000000000000..70abc1aaa8dae5d0bc3a23f4d4c99234427add52 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0614.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 54, + 33 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0615.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0615.json" new file mode 100644 index 0000000000000000000000000000000000000000..0907da0fd40a936130b33b5531769f0054096b46 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0615.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 98, + 59 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0616.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0616.json" new file mode 100644 index 0000000000000000000000000000000000000000..8e8be983855cd82fe0f49600851d10ee2dc4b3d6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0616.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 27, + 25 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0617.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0617.json" new file mode 100644 index 0000000000000000000000000000000000000000..be3c7a4326a38988dd12ae71a6406991c0a0f2fc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0617.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 6, + 81 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0618.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0618.json" new file mode 100644 index 0000000000000000000000000000000000000000..9cfe3057921c911a34ce2c2044d42a44de20edc8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0618.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 11, + 74 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0619.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0619.json" new file mode 100644 index 0000000000000000000000000000000000000000..5829c54be1d049ee37bec3c9c4f930f3c244ca81 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0619.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 71, + 46 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0620.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0620.json" new file mode 100644 index 0000000000000000000000000000000000000000..4c0c01d0ac91b105c2e3dee0a85e65b457d1451a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0620.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 14, + 90 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0621.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0621.json" new file mode 100644 index 0000000000000000000000000000000000000000..804efefa34f6360369ddf0c2d01c354ff2a3d8d8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0621.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 31, + 11 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0622.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0622.json" new file mode 100644 index 0000000000000000000000000000000000000000..9797ed3a8f7ca7d7f8b9f2116de6dff3d1c05647 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0622.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 89, + 87 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0623.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0623.json" new file mode 100644 index 0000000000000000000000000000000000000000..0affa4423fe7d7091163dd6a1e1ba0ab5e0c5731 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0623.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 75, + 62 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0624.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0624.json" new file mode 100644 index 0000000000000000000000000000000000000000..5b6d251177d8a891d81f94fa277fd385652ad32d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0624.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 19, + 42 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0625.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0625.json" new file mode 100644 index 0000000000000000000000000000000000000000..2b6cba68d64824b7effc6bb68d2cb94c17293797 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0625.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Padauk", + "fontsize": "40", + "outline": "2.2", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 75, + 69 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0626.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0626.json" new file mode 100644 index 0000000000000000000000000000000000000000..87a53c7ac87704b59df0f75bb741188bc5200768 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0626.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 19, + 23 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0627.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0627.json" new file mode 100644 index 0000000000000000000000000000000000000000..e7d5e09f4569339171d989255a47402eaf2d3a3d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0627.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 87, + 12 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0628.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0628.json" new file mode 100644 index 0000000000000000000000000000000000000000..c61bc3c107ad19ebd691d20170a6943c4d8371d4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0628.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 66, + 38 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0629.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0629.json" new file mode 100644 index 0000000000000000000000000000000000000000..74ac173ef31ec1e50fdbf2f7270e9d374fd2f6da --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0629.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 1, + 84 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0630.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0630.json" new file mode 100644 index 0000000000000000000000000000000000000000..6bfdc00989977cd8925c8ea4d8b16a82ec7cdee3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0630.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 1, + 29 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0631.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0631.json" new file mode 100644 index 0000000000000000000000000000000000000000..672243bbee4f4d5adb3dd8f4d76dea7ecc6e9f57 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0631.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 73, + 14 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0632.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0632.json" new file mode 100644 index 0000000000000000000000000000000000000000..430e741bd119f1b39f5f33d80f0e3bc10005f173 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0632.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 77, + 18 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0633.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0633.json" new file mode 100644 index 0000000000000000000000000000000000000000..24d880e746a81ebaabb2d771a491ee5e8fb49961 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0633.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 54, + 0 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0634.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0634.json" new file mode 100644 index 0000000000000000000000000000000000000000..daef080bcce62e258c50d3ff416eadaf626aae70 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0634.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 5, + 73 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0635.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0635.json" new file mode 100644 index 0000000000000000000000000000000000000000..9a45e8daf4b0481d1f9118c1b3af62158e3a136e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0635.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 1, + 89 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0636.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0636.json" new file mode 100644 index 0000000000000000000000000000000000000000..c1aba60b3344c38d690fbb432fae10751a947652 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0636.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 49, + 93 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0637.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0637.json" new file mode 100644 index 0000000000000000000000000000000000000000..1b0a4a6e672ddd2ccd56456529b69100675abd65 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0637.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 59, + 63 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0638.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0638.json" new file mode 100644 index 0000000000000000000000000000000000000000..2b1bb2d70aef626e8fe3450fe5a2e61875a75850 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0638.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 15, + 36 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0639.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0639.json" new file mode 100644 index 0000000000000000000000000000000000000000..1fce22781cc086ba0a3b3ea461ce09ea9ae778a3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0639.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 98, + 4 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0640.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0640.json" new file mode 100644 index 0000000000000000000000000000000000000000..c70c4d3df6f19bd131bcb41d28f738725a23fbe1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0640.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 30, + 65 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0641.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0641.json" new file mode 100644 index 0000000000000000000000000000000000000000..08b469723b8e3a4395ac965fbdd6a2c815fe03be --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0641.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 39, + 53 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0642.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0642.json" new file mode 100644 index 0000000000000000000000000000000000000000..0e29400fb6da6368922f3722ee342dea3f711c43 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0642.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 92, + 50 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0643.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0643.json" new file mode 100644 index 0000000000000000000000000000000000000000..33eb93fd46052bcc9cf14c877f65ac841151ed4b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0643.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 51, + 74 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0644.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0644.json" new file mode 100644 index 0000000000000000000000000000000000000000..ea8bf47f11128507348279a004ba98a6eabc0129 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0644.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 15, + 87 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0645.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0645.json" new file mode 100644 index 0000000000000000000000000000000000000000..817b121c68f1f8b21a9ee0058657f5cff512d41b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0645.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 58, + 53 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0646.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0646.json" new file mode 100644 index 0000000000000000000000000000000000000000..8de7f3ea8d6fdc606fafe70dba6f47c35b4bf377 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0646.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 24, + 16 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0647.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0647.json" new file mode 100644 index 0000000000000000000000000000000000000000..178388915896b9586f2f64db34b8ebc8510ce247 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0647.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 37, + 36 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0648.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0648.json" new file mode 100644 index 0000000000000000000000000000000000000000..55078225eb78d407a31e1bb4ff1b92b516d62505 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0648.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 38, + 37 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0649.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0649.json" new file mode 100644 index 0000000000000000000000000000000000000000..9e7297a1fba79561bca0bdda867fc9a186d05595 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0649.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 39, + 21 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0650.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0650.json" new file mode 100644 index 0000000000000000000000000000000000000000..4057aec83299ae7c77cec71aae47b3936f361ee5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0650.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 64, + 89 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0651.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0651.json" new file mode 100644 index 0000000000000000000000000000000000000000..97a7693f2266e50ce6a0d2924721deb705b35791 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0651.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 19, + 59 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0652.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0652.json" new file mode 100644 index 0000000000000000000000000000000000000000..516fba89a5897240329ea576d6c62e102ff00a97 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0652.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 12, + 94 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0653.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0653.json" new file mode 100644 index 0000000000000000000000000000000000000000..f93bf8c6001d52b98c5a237e99cc593b58a267b5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0653.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 98, + 33 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0654.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0654.json" new file mode 100644 index 0000000000000000000000000000000000000000..3a809bba4a7b0cbb95a5168ee13cd147ee5b3da0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0654.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 38, + 87 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0655.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0655.json" new file mode 100644 index 0000000000000000000000000000000000000000..79111ce2cbf276e5ee1453ba10cac444df368ba5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0655.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 32, + 97 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0656.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0656.json" new file mode 100644 index 0000000000000000000000000000000000000000..8457b22a1ce02983c296eeb37911e95af244c11d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0656.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 78, + 39 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0657.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0657.json" new file mode 100644 index 0000000000000000000000000000000000000000..910c0702f2b0b1e7cfc5bf498ec8d1b43a8f6099 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0657.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 6, + 36 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0658.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0658.json" new file mode 100644 index 0000000000000000000000000000000000000000..8c5af5b4d6f7fa29f27eb6f451eb8889660e25ba --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0658.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 97, + 95 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0659.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0659.json" new file mode 100644 index 0000000000000000000000000000000000000000..700b186c2e8bf41cc3d1256de84f6c63bf751f42 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0659.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 90, + 85 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0660.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0660.json" new file mode 100644 index 0000000000000000000000000000000000000000..bb14ac6d68fd13b63c53c1f4ec07db4e4284d081 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0660.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 57, + 86 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0661.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0661.json" new file mode 100644 index 0000000000000000000000000000000000000000..7be0cc06e94bfd7bbf8eeb1b62df1654482875a8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0661.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 1, + 85 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0662.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0662.json" new file mode 100644 index 0000000000000000000000000000000000000000..93b5dc87ee988651057c5f71e384574276333b59 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0662.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.0", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 62, + 50 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0663.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0663.json" new file mode 100644 index 0000000000000000000000000000000000000000..3238ec503c05ff2c2e00de0981e64ac40397f320 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0663.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 73, + 89 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0664.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0664.json" new file mode 100644 index 0000000000000000000000000000000000000000..b064bf3877728e799b219676dcd799777c136d5e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0664.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 5, + 62 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0665.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0665.json" new file mode 100644 index 0000000000000000000000000000000000000000..2d09c936107ba8664212637b3958296a59338b93 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0665.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 46, + 47 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0666.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0666.json" new file mode 100644 index 0000000000000000000000000000000000000000..fea311c620b124a17b4ca2a0bd549ab268548eeb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0666.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 46, + 74 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0667.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0667.json" new file mode 100644 index 0000000000000000000000000000000000000000..a4a2b1d377e0c121a3746dbd4a710984a88068b1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0667.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 7, + 23 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0668.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0668.json" new file mode 100644 index 0000000000000000000000000000000000000000..bb7ca02968c108df497d4c4bd8e948fbbac8c41b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0668.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 99, + 1 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0669.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0669.json" new file mode 100644 index 0000000000000000000000000000000000000000..2f5d187e5525f6c4eef6710fbaf4700187e714ad --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0669.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 7, + 60 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0670.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0670.json" new file mode 100644 index 0000000000000000000000000000000000000000..af00e67ee69cb6b043262914e925cb0631eebdd6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0670.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 44, + 30 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0671.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0671.json" new file mode 100644 index 0000000000000000000000000000000000000000..fd58032ad2e24bbbdea676f18824e2b08a3b593e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0671.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 46, + 18 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0672.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0672.json" new file mode 100644 index 0000000000000000000000000000000000000000..0802ec9e9e3c54748fc2cdd53f1e391f1cae66f7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0672.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 88, + 69 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0673.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0673.json" new file mode 100644 index 0000000000000000000000000000000000000000..4f0eb71288704fe3c773bfa618cbdd826910f5ab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0673.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 89, + 83 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0674.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0674.json" new file mode 100644 index 0000000000000000000000000000000000000000..7bad9dad2e264c04dcbf88ca0af4ebe669ed508f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0674.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 71, + 51 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0675.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0675.json" new file mode 100644 index 0000000000000000000000000000000000000000..4503d3ad5e950035849ebf69644d8980ca174db3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0675.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 33, + 8 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0676.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0676.json" new file mode 100644 index 0000000000000000000000000000000000000000..83aed2913176498d082113ce8dcf824836e2eab2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0676.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 54, + 67 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0677.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0677.json" new file mode 100644 index 0000000000000000000000000000000000000000..4cde0a993b8e5727d4f3764814e9ba10e4353b00 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0677.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.5", + "shadow": "3.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 6, + 87 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0678.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0678.json" new file mode 100644 index 0000000000000000000000000000000000000000..0240ba07fed69d98df81e4d4c9306df4afea155e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0678.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 73, + 79 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0679.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0679.json" new file mode 100644 index 0000000000000000000000000000000000000000..3ce7050359307117b331e8c196c56c43348157a0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0679.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 65, + 6 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0680.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0680.json" new file mode 100644 index 0000000000000000000000000000000000000000..3e5c66be4f803f54b1ca7034793102a91c305b71 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0680.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 93, + 82 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0681.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0681.json" new file mode 100644 index 0000000000000000000000000000000000000000..a8433903734683b848a6c883090731effd9fcf74 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0681.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 19, + 30 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0682.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0682.json" new file mode 100644 index 0000000000000000000000000000000000000000..aac6b2630a19ba83ad476ba318e5a79808afe577 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0682.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 61, + 80 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0683.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0683.json" new file mode 100644 index 0000000000000000000000000000000000000000..d26d12485121407ec27600773a39398465d81b27 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0683.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 12, + 5 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0684.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0684.json" new file mode 100644 index 0000000000000000000000000000000000000000..a8e8abeaa95cdf6ccd3fba5c6d0246597ae4fd5d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0684.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 44, + 70 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0685.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0685.json" new file mode 100644 index 0000000000000000000000000000000000000000..4dafe9cceb9866f1b95b8f8cc5ed81daef624128 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0685.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 30, + 49 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0686.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0686.json" new file mode 100644 index 0000000000000000000000000000000000000000..992972fa553c2a78d3af130d595d0abfae2e409f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0686.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "3.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 70, + 78 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0687.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0687.json" new file mode 100644 index 0000000000000000000000000000000000000000..e890ae2d555787bfa231514eeac795ffe84ec71c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0687.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 50, + 48 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0688.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0688.json" new file mode 100644 index 0000000000000000000000000000000000000000..7cf127a58b7bfc40886c12173d9e85bf0e91757b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0688.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 27, + 34 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0689.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0689.json" new file mode 100644 index 0000000000000000000000000000000000000000..63f40281ff7f3e1af5e9492dbb12fc4419a3e04b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0689.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 89, + 30 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0690.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0690.json" new file mode 100644 index 0000000000000000000000000000000000000000..29af63a7b2e27fbb883c3296e05ca90b7a07603b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0690.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 46, + 36 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0691.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0691.json" new file mode 100644 index 0000000000000000000000000000000000000000..30ed73d943731b72eebe8ce696d8849f7f1dc506 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0691.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 91, + 1 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0692.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0692.json" new file mode 100644 index 0000000000000000000000000000000000000000..ce2a2dc52a8a50425e3614ae24c62ce5970dc9bb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0692.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 63, + 66 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0693.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0693.json" new file mode 100644 index 0000000000000000000000000000000000000000..76ba7dee6712dd6ab8f47bbbc219c0337a91b7ed --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0693.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 51, + 23 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0694.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0694.json" new file mode 100644 index 0000000000000000000000000000000000000000..65282b44bcd0f70868ba5ad22b57bd876e682ee0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0694.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 11, + 2 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0695.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0695.json" new file mode 100644 index 0000000000000000000000000000000000000000..bda0c9f482eef92c9d8596c5315fb36b28722f6a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0695.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 86, + 85 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0696.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0696.json" new file mode 100644 index 0000000000000000000000000000000000000000..ef55d5cff0396ecad95088fe0959d8e35904ff44 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0696.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 8, + 39 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0697.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0697.json" new file mode 100644 index 0000000000000000000000000000000000000000..73c3b1012a0cc648c85c9780e67354b946ab2862 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0697.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 55, + 1 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0698.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0698.json" new file mode 100644 index 0000000000000000000000000000000000000000..046c77ed983a7e3ffd146e97a236790f8df27826 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0698.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 31, + 49 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0699.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0699.json" new file mode 100644 index 0000000000000000000000000000000000000000..bd51a720823a60486e446e62783bffeb2e60be93 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0699.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 0, + 79 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0700.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0700.json" new file mode 100644 index 0000000000000000000000000000000000000000..0abe18b06e080c60739134e551f886a1d8026329 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0700.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 32, + 0 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0701.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0701.json" new file mode 100644 index 0000000000000000000000000000000000000000..5908aa0322acef9078ca1a6e89c17e94639d53fd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0701.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 66, + 50 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0702.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0702.json" new file mode 100644 index 0000000000000000000000000000000000000000..c1f634541c04969b4eebdfd6a11e4c244db02089 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0702.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 29, + 25 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0703.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0703.json" new file mode 100644 index 0000000000000000000000000000000000000000..e61484dd50f49efe2d80a19ea6e46f9971c40a70 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0703.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 100, + 59 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0704.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0704.json" new file mode 100644 index 0000000000000000000000000000000000000000..b5630e6e8fba37429053114535b0c5b7345faa79 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0704.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 13, + 5 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0705.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0705.json" new file mode 100644 index 0000000000000000000000000000000000000000..884213503f51a34a32fc06f91c583ef24bedf7dc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0705.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 73, + 36 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0706.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0706.json" new file mode 100644 index 0000000000000000000000000000000000000000..45362a65142ba3b970dd1e1734cce2f0838f333f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0706.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 70, + 91 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0707.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0707.json" new file mode 100644 index 0000000000000000000000000000000000000000..737832f66c25554c9e217b1dc4a77539029a7ad2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0707.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 2, + 18 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0708.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0708.json" new file mode 100644 index 0000000000000000000000000000000000000000..a0b4459cc414d8c14eb9f35d70cf290ec5e66733 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0708.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.7", + "shadow": "3.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 66, + 48 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0709.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0709.json" new file mode 100644 index 0000000000000000000000000000000000000000..dd19bbfea4ef0ec53ac3910bba34826acf270fed --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0709.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 61, + 64 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0710.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0710.json" new file mode 100644 index 0000000000000000000000000000000000000000..f94d97b5852f6396e2dd771bb80d05cfc022a62b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0710.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 17, + 20 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0711.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0711.json" new file mode 100644 index 0000000000000000000000000000000000000000..b70a61405637d8b9b589a60cb3079dcb1e1b04f8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0711.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 73, + 44 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0712.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0712.json" new file mode 100644 index 0000000000000000000000000000000000000000..20f35b71e0fda0d6a2d5d94efa53ee671414f472 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0712.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 13, + 79 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0713.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0713.json" new file mode 100644 index 0000000000000000000000000000000000000000..9175aa1b47203bbfacf119c58f37a307bb3338b5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0713.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 98, + 74 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0714.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0714.json" new file mode 100644 index 0000000000000000000000000000000000000000..817e97fe213022eda20812578e50c457ad1596e3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0714.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 43, + 16 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0715.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0715.json" new file mode 100644 index 0000000000000000000000000000000000000000..e3b4a8e59a77d73a7b05c10352c1f37031d8682d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0715.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "3.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 50, + 57 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0716.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0716.json" new file mode 100644 index 0000000000000000000000000000000000000000..fd00ba7ef046704e7e5c4c001e48e8aa4ea32e09 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0716.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 44, + 28 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0717.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0717.json" new file mode 100644 index 0000000000000000000000000000000000000000..72addf56dc4bdbd80a1b41e2d9f62e44f5c9dd29 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0717.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 2, + 23 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0718.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0718.json" new file mode 100644 index 0000000000000000000000000000000000000000..ec5bf9d001619b217be7110af213ead147a2d329 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0718.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 78, + 78 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0719.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0719.json" new file mode 100644 index 0000000000000000000000000000000000000000..05f19f2cbb235a57d0145f238465ca6659d72080 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0719.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 29, + 53 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0720.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0720.json" new file mode 100644 index 0000000000000000000000000000000000000000..03487295a8c5bef51064b7cc99d2db44abf169be --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0720.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 24, + 39 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0721.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0721.json" new file mode 100644 index 0000000000000000000000000000000000000000..b2918bde7910d2f013dee1be77bce32018858a96 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0721.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 24, + 66 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0722.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0722.json" new file mode 100644 index 0000000000000000000000000000000000000000..6928c93e947ad64002334e3e2eb1345690e95016 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0722.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.5", + "shadow": "3.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 73, + 65 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0723.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0723.json" new file mode 100644 index 0000000000000000000000000000000000000000..f99bd9520b6f99638b4cc4062df2fb9ee5c97518 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0723.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 51, + 84 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0724.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0724.json" new file mode 100644 index 0000000000000000000000000000000000000000..9514a2a39782449b4b98a2944d02ae874ee336db --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0724.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 49, + 26 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0725.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0725.json" new file mode 100644 index 0000000000000000000000000000000000000000..01259ca5cae2a0f1567731bf1e2b2eb4e7a7ca7f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0725.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 61, + 97 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0726.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0726.json" new file mode 100644 index 0000000000000000000000000000000000000000..c99d68b1ecd8721ab11c8a5f4cee7704fe934272 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0726.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito Sans", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 92, + 49 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0727.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0727.json" new file mode 100644 index 0000000000000000000000000000000000000000..c3301fab24c4b4e340ed62659a18446353d3b69a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0727.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 55, + 45 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0728.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0728.json" new file mode 100644 index 0000000000000000000000000000000000000000..245d2b222b3d553e9e7c9550dc5be19583b11926 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0728.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 56, + 72 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0729.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0729.json" new file mode 100644 index 0000000000000000000000000000000000000000..e3be4a4323a7945956fb4478fee326451b4e4401 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0729.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 93, + 37 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0730.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0730.json" new file mode 100644 index 0000000000000000000000000000000000000000..568c8920cedc2456c8c737e92ab1ee5ddf74c901 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0730.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 32, + 95 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0731.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0731.json" new file mode 100644 index 0000000000000000000000000000000000000000..e3ab9aa9768755bf04fb949759ff574d2c3a4a1d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0731.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 16, + 62 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0732.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0732.json" new file mode 100644 index 0000000000000000000000000000000000000000..22c2f9c43d798c4d31bd0175345e8d34420a61c7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0732.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 28, + 77 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0733.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0733.json" new file mode 100644 index 0000000000000000000000000000000000000000..096b6aafc54237139dcd93002cbf34bdf5a1bc44 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0733.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 38, + 20 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0734.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0734.json" new file mode 100644 index 0000000000000000000000000000000000000000..facd101c90932c22a9c8dddc2b9075a12f890918 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0734.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 47, + 78 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0735.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0735.json" new file mode 100644 index 0000000000000000000000000000000000000000..227ce93a5a6453dbcc0d7b426b464bc058aa475c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0735.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 98, + 90 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0736.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0736.json" new file mode 100644 index 0000000000000000000000000000000000000000..311480b87904fd055fc1b7b00ed0d561d6ad008c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0736.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 12, + 76 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0737.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0737.json" new file mode 100644 index 0000000000000000000000000000000000000000..94d92bf56f723bccaed9dd6f8833cac2322cebc2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0737.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 66, + 22 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0738.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0738.json" new file mode 100644 index 0000000000000000000000000000000000000000..c35adc25a41e4b44efc9160f8900538d4fb32747 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0738.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 67, + 73 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0739.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0739.json" new file mode 100644 index 0000000000000000000000000000000000000000..236fea2084edb8fa6ad72f189daa8a11be4de134 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0739.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 68, + 41 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0740.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0740.json" new file mode 100644 index 0000000000000000000000000000000000000000..29cead8ea82fe2f5de9fd57d5c0f04508b56a88c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0740.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 67, + 76 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0741.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0741.json" new file mode 100644 index 0000000000000000000000000000000000000000..e173a39e647b0f818c44cb01cdfef88c33ada0bb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0741.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 70, + 78 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0742.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0742.json" new file mode 100644 index 0000000000000000000000000000000000000000..266bba9baecadd8a83c5949fa903f08dd117852e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0742.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 86, + 76 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0743.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0743.json" new file mode 100644 index 0000000000000000000000000000000000000000..ec1ccbc5a70625bbe8ea4b7d452d0dac648b7d6e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0743.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 23, + 9 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0744.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0744.json" new file mode 100644 index 0000000000000000000000000000000000000000..5f1414e07ff4536e092bd4489d6830b4520a4945 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0744.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 41, + 14 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0745.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0745.json" new file mode 100644 index 0000000000000000000000000000000000000000..a0e8b5f00d25202535b82a1e9fdd498d3244d9d4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0745.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 32, + 9 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0746.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0746.json" new file mode 100644 index 0000000000000000000000000000000000000000..db5e41696b5c3b4d412d6338d3c994b12a5424a5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0746.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 34, + 47 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0747.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0747.json" new file mode 100644 index 0000000000000000000000000000000000000000..629447d46a2e447d57b51ac5937590042dd24167 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0747.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 90, + 100 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0748.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0748.json" new file mode 100644 index 0000000000000000000000000000000000000000..1a93484cd0fbdb3a0ab184f4e816835b3a51c949 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0748.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 15, + 6 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0749.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0749.json" new file mode 100644 index 0000000000000000000000000000000000000000..d7eaa2738c6e2ef619c5150e1e5cf743bdd1c40c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0749.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 48, + 22 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0750.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0750.json" new file mode 100644 index 0000000000000000000000000000000000000000..76f1a2bb56c48b7f079408dc60437d20bfe19e38 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0750.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 67, + 76 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0751.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0751.json" new file mode 100644 index 0000000000000000000000000000000000000000..e26df3a906e7331adfcaac693a6493ea01970518 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0751.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 8, + 79 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0752.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0752.json" new file mode 100644 index 0000000000000000000000000000000000000000..ffcfde37fdbee2a745d06924d9af69e3c736f7f3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0752.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 33, + 41 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0753.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0753.json" new file mode 100644 index 0000000000000000000000000000000000000000..6b19f664ed9826c3d4a8fba3040bbb541be6102d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0753.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 53, + 57 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0754.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0754.json" new file mode 100644 index 0000000000000000000000000000000000000000..bf312fd1ab2e4c766f7e867b84aa3ec0d0562752 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0754.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 22, + 50 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0755.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0755.json" new file mode 100644 index 0000000000000000000000000000000000000000..355b7f97c0c5659c8ff3589359492e07d5bdd1c1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0755.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 64, + 45 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0756.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0756.json" new file mode 100644 index 0000000000000000000000000000000000000000..2f50763dde1b431dc847082b3c0f5184f5947a04 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0756.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 94, + 90 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0757.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0757.json" new file mode 100644 index 0000000000000000000000000000000000000000..930508334af4582632155f8cb842b9f060649390 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0757.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 95, + 13 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0758.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0758.json" new file mode 100644 index 0000000000000000000000000000000000000000..60758689241a05182f07d8aa9054dd3d9d3aa962 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0758.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 14, + 32 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0759.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0759.json" new file mode 100644 index 0000000000000000000000000000000000000000..22acdbb13e5cba77306084720019c8fc5772df57 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0759.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 90, + 1 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0760.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0760.json" new file mode 100644 index 0000000000000000000000000000000000000000..34aed38d0fc80c3fb540ff4722de0debb5b7edf6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0760.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 54, + 21 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0761.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0761.json" new file mode 100644 index 0000000000000000000000000000000000000000..ea5a7afbb85d572a8d5e2e884f471366f4988380 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0761.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 34, + 29 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0762.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0762.json" new file mode 100644 index 0000000000000000000000000000000000000000..443882a51414a221be85c014b3e4b07e336557a8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0762.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 61, + 94 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0763.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0763.json" new file mode 100644 index 0000000000000000000000000000000000000000..33a9cc02d6af7e55c812826b99a7a2e0009a619b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0763.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 93, + 25 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0764.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0764.json" new file mode 100644 index 0000000000000000000000000000000000000000..547e7bd9c4e970495054ccd53c49bfc7fe83a548 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0764.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 100, + 27 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0765.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0765.json" new file mode 100644 index 0000000000000000000000000000000000000000..64610d314057b2291a0576c5c7c0213b901d480b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0765.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 83, + 35 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0766.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0766.json" new file mode 100644 index 0000000000000000000000000000000000000000..2b1f2a855cfb0609f94636967b96c134dc1c27a6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0766.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 12, + 62 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0767.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0767.json" new file mode 100644 index 0000000000000000000000000000000000000000..fdb2b4e230ea775cdd5a4c47c9fa5beb68647e46 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0767.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 21, + 3 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0768.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0768.json" new file mode 100644 index 0000000000000000000000000000000000000000..6ce6fbe2fcef6d8c2331c80163977e2aad0e64a9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0768.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 10, + 55 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0769.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0769.json" new file mode 100644 index 0000000000000000000000000000000000000000..e08aaf9fa0cf45a56cdbc25e7cbf5bd7f8eef369 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0769.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 98, + 99 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0770.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0770.json" new file mode 100644 index 0000000000000000000000000000000000000000..ab8b92d0377bf3ab5cf289eb8b094b86cf9d3d2c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0770.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 93, + 5 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0771.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0771.json" new file mode 100644 index 0000000000000000000000000000000000000000..c44991e887ae3d687d7ae24c26a46ec13f845ded --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0771.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 22, + 42 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0772.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0772.json" new file mode 100644 index 0000000000000000000000000000000000000000..665e458663c4648150cde5bb39ef3c610e5bd94b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0772.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 48, + 92 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0773.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0773.json" new file mode 100644 index 0000000000000000000000000000000000000000..7d7d3dd092deab385caa79dea75a56114efc8c3d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0773.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 34, + 19 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0774.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0774.json" new file mode 100644 index 0000000000000000000000000000000000000000..a0a125ca392341274eb57282306e3cf2050b4cd7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0774.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 87, + 71 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0775.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0775.json" new file mode 100644 index 0000000000000000000000000000000000000000..8f898f2aa3c58520c54caecf94cbcd5d02a28c17 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0775.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 19, + 66 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0776.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0776.json" new file mode 100644 index 0000000000000000000000000000000000000000..b53177be39ecf184b60aacf32da938125328c5d8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0776.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 49, + 80 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0777.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0777.json" new file mode 100644 index 0000000000000000000000000000000000000000..458b0bc26614cdab8e86704cee07a5d1caacff5a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0777.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 72, + 44 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0778.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0778.json" new file mode 100644 index 0000000000000000000000000000000000000000..52a3b5e19c8a1f3c37c2180d6a54330fc742fd30 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0778.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 52, + 53 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0779.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0779.json" new file mode 100644 index 0000000000000000000000000000000000000000..b0c325bd7bd02825a235498bd070f3028adaebf9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0779.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 33, + 99 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0780.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0780.json" new file mode 100644 index 0000000000000000000000000000000000000000..070e661cb7f98974c8b12bd8f0a5fdb6be4dd499 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0780.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 96, + 21 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0781.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0781.json" new file mode 100644 index 0000000000000000000000000000000000000000..fee9e5f2a8c1c9da0163928a3f16a9ea0bbb9134 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0781.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 35, + 5 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0782.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0782.json" new file mode 100644 index 0000000000000000000000000000000000000000..408ddfc95de0777203554c531e946f66b85fa71b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0782.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 67, + 96 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0783.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0783.json" new file mode 100644 index 0000000000000000000000000000000000000000..bad9fe86bbcf54a59702d2d44101771af115a861 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0783.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 23, + 59 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0784.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0784.json" new file mode 100644 index 0000000000000000000000000000000000000000..80f071b55c38fde2e3b0a702e9fecb48b0ef5ddb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0784.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 25, + 71 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0785.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0785.json" new file mode 100644 index 0000000000000000000000000000000000000000..5ec74b32de1aa0baa69797e19828de63394d1803 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0785.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 80, + 7 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0786.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0786.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f824e1227a0669edcef029c0e8ca3b47eca11ee --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0786.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 1, + 78 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0787.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0787.json" new file mode 100644 index 0000000000000000000000000000000000000000..9f04597a0261c38123d5f97d1aa1834921213492 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0787.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 41, + 36 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0788.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0788.json" new file mode 100644 index 0000000000000000000000000000000000000000..4bdc7f255487ba61ca68164d59a4e99b0be92223 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0788.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 34, + 69 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0789.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0789.json" new file mode 100644 index 0000000000000000000000000000000000000000..8a7aa9069b309692f2fce5089144a6694a6c46ce --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0789.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 61, + 84 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0790.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0790.json" new file mode 100644 index 0000000000000000000000000000000000000000..78362635a5d4a49ee945f5de4d1d79ed7aac5118 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0790.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 26, + 81 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0791.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0791.json" new file mode 100644 index 0000000000000000000000000000000000000000..eaebde51e05a0117058c0b1776bfa307033dab51 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0791.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 100, + 53 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0792.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0792.json" new file mode 100644 index 0000000000000000000000000000000000000000..3dda71fc638bba28d05430d0f3f6c9d121d86475 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0792.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 12, + 76 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0793.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0793.json" new file mode 100644 index 0000000000000000000000000000000000000000..43984746db12636d6bb06122e2755d29fa18a11c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0793.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 34, + 76 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0794.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0794.json" new file mode 100644 index 0000000000000000000000000000000000000000..699ae676d7afdae8bbc2e54ff7768c46a97d0b7d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0794.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 23, + 81 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0795.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0795.json" new file mode 100644 index 0000000000000000000000000000000000000000..57fd4491d5037580b467a46bf5a92ef43f1d0274 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0795.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 100, + 70 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0796.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0796.json" new file mode 100644 index 0000000000000000000000000000000000000000..946416f1c06ba72961482a00b694334bdd6474bf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0796.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 37, + 76 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0797.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0797.json" new file mode 100644 index 0000000000000000000000000000000000000000..12db5c0b7559882c482f25d7a161dc82830a2eca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0797.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 65, + 22 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0798.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0798.json" new file mode 100644 index 0000000000000000000000000000000000000000..bae087ab32946f4ef1b60ff95833bcf401dc677f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0798.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 13, + 40 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0799.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0799.json" new file mode 100644 index 0000000000000000000000000000000000000000..3f205e045030a46562189b15ea0a1be0460f5bfd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0799.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 37, + 22 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0800.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0800.json" new file mode 100644 index 0000000000000000000000000000000000000000..c6fd9b95e88d88185a2d803ccda65dcbaf031690 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0800.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 55, + 17 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0801.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0801.json" new file mode 100644 index 0000000000000000000000000000000000000000..8378d62ee5e313607d331d774e27f6d54aa4f6c0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0801.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 37, + 75 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0802.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0802.json" new file mode 100644 index 0000000000000000000000000000000000000000..211a4b1318cafcdafd4812c12a5e5d5283936102 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0802.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 4, + 31 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0803.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0803.json" new file mode 100644 index 0000000000000000000000000000000000000000..12a0ea519012f9ae7b59ab99d90aab2f24b64c8a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0803.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 75, + 47 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0804.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0804.json" new file mode 100644 index 0000000000000000000000000000000000000000..05988d61f91f096992f2433f8988bceb055e480f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0804.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 3, + 47 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0805.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0805.json" new file mode 100644 index 0000000000000000000000000000000000000000..e1a528dd010211adaad784985c8b621592eabea5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0805.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 33, + 16 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0806.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0806.json" new file mode 100644 index 0000000000000000000000000000000000000000..9be0c24f038566a3a2564680582ee484c54b5aea --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0806.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 21, + 71 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0807.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0807.json" new file mode 100644 index 0000000000000000000000000000000000000000..a200601e43fba541b90a6cf45118709698406875 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0807.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 57, + 53 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0808.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0808.json" new file mode 100644 index 0000000000000000000000000000000000000000..2837f7ea82a4fbb401ba4afc971a6a1d23825b89 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0808.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 69, + 95 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0809.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0809.json" new file mode 100644 index 0000000000000000000000000000000000000000..07c1e001eeae6b1866ced6a7b8d0e582aac0ac65 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0809.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 76, + 68 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0810.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0810.json" new file mode 100644 index 0000000000000000000000000000000000000000..220bcfc48b673e341e7f2631ca87f851de3d4da6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0810.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 70, + 52 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0811.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0811.json" new file mode 100644 index 0000000000000000000000000000000000000000..036c9594bbf2e8d7eb1243770df854c51b753bf2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0811.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 77, + 14 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0812.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0812.json" new file mode 100644 index 0000000000000000000000000000000000000000..a7287e31474764a2dec0c852e87cc8b2692ecd65 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0812.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 64, + 64 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0813.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0813.json" new file mode 100644 index 0000000000000000000000000000000000000000..3486927a63a3bb6388f2b20a3ca0af8462651e65 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0813.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 82, + 64 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0814.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0814.json" new file mode 100644 index 0000000000000000000000000000000000000000..34563c09ae89e1ba6b09f9ac49c419a290504c2a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0814.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 53, + 39 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0815.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0815.json" new file mode 100644 index 0000000000000000000000000000000000000000..d05389d538938dbec2d897ebae3ccfa8be5bc463 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0815.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 100, + 20 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0816.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0816.json" new file mode 100644 index 0000000000000000000000000000000000000000..d55254c8a92a67e37c89f90ef132d381cf1cfb9d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0816.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 18, + 66 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0817.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0817.json" new file mode 100644 index 0000000000000000000000000000000000000000..da2eca3edd273dc58c9c4efbfcc9ef2b914d260f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0817.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 14, + 28 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0818.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0818.json" new file mode 100644 index 0000000000000000000000000000000000000000..f64d48e3ca89da7d002ac75df350cd62a6accc91 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0818.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 15, + 83 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0819.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0819.json" new file mode 100644 index 0000000000000000000000000000000000000000..ef5e0f153670b510d0e34ad6796f618ce0e8c52d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0819.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 0, + 32 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0820.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0820.json" new file mode 100644 index 0000000000000000000000000000000000000000..7edd75f16855891e5770aac5b84f0bc235c8acf9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0820.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 25, + 25 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0821.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0821.json" new file mode 100644 index 0000000000000000000000000000000000000000..9e0b10dee8dc243f7441d2b30c2af72ddb3f19c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0821.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 43, + 73 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0822.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0822.json" new file mode 100644 index 0000000000000000000000000000000000000000..7d04d3eb3afc9b0a4480b84a15014f262660b0e9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0822.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 53, + 78 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0823.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0823.json" new file mode 100644 index 0000000000000000000000000000000000000000..8b8480deba155f82dfc823794e80cd2e7ccd9191 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0823.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 79, + 61 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0824.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0824.json" new file mode 100644 index 0000000000000000000000000000000000000000..94f7db11b6c8061cbe4f1790e9447b475902f95c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0824.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 12, + 60 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0825.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0825.json" new file mode 100644 index 0000000000000000000000000000000000000000..2a6e532d2f2e60fff02484f0984c26ae536ffcff --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0825.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 93, + 53 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0826.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0826.json" new file mode 100644 index 0000000000000000000000000000000000000000..013c4fc589dc096cc7de5c2178c9b3dcd424b6fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0826.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 96, + 34 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0827.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0827.json" new file mode 100644 index 0000000000000000000000000000000000000000..039bd223f823cee585af16b5156bc1c05ca3c139 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0827.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 95, + 3 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0828.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0828.json" new file mode 100644 index 0000000000000000000000000000000000000000..b24eeb23096f0d7d0fa1531772da02696cd43deb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0828.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 75, + 86 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0829.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0829.json" new file mode 100644 index 0000000000000000000000000000000000000000..0c66de7b585bb707abb9f11e25de5d852deb008b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0829.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 98, + 37 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0830.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0830.json" new file mode 100644 index 0000000000000000000000000000000000000000..98805e19f45e96e45a988d61fb1be4133eb337c4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0830.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 40, + 50 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0831.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0831.json" new file mode 100644 index 0000000000000000000000000000000000000000..b8a9f956e7c4ee44fb18ec0baf999245c2a3a2bf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0831.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 40, + 42 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0832.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0832.json" new file mode 100644 index 0000000000000000000000000000000000000000..657f1334267361467170ec0e94f6a6ca75474072 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0832.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 24, + 2 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0833.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0833.json" new file mode 100644 index 0000000000000000000000000000000000000000..45e554f23d5bb8e1102319eb290ad5c4275cbec9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0833.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 68, + 7 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0834.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0834.json" new file mode 100644 index 0000000000000000000000000000000000000000..0bd8619b09a213c8d27dcfe0580dc80bf5516f43 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0834.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 62, + 51 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0835.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0835.json" new file mode 100644 index 0000000000000000000000000000000000000000..9e834e1fd286073fd925da150c5ff8543d98e285 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0835.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 16, + 56 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0836.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0836.json" new file mode 100644 index 0000000000000000000000000000000000000000..20f4c56cc70adeabeaede721583624a963b39a61 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0836.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 49, + 75 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0837.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0837.json" new file mode 100644 index 0000000000000000000000000000000000000000..9f4a35d1ca18053f749bb234fa05af4f9db7dc9d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0837.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 11, + 4 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0838.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0838.json" new file mode 100644 index 0000000000000000000000000000000000000000..f100774102081b366a8e8c157a1b5dd7767810b8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0838.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 56, + 9 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0839.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0839.json" new file mode 100644 index 0000000000000000000000000000000000000000..faa522f4a9e276badb77e1bd01a2905bd6ad2ed2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0839.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 72, + 96 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0840.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0840.json" new file mode 100644 index 0000000000000000000000000000000000000000..f9a1c5f859ab22d660ba4b55116fe08fd62b538c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0840.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 83, + 5 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0841.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0841.json" new file mode 100644 index 0000000000000000000000000000000000000000..1d542b70bec46f6d1b80bc1efc8fc3156c25856b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0841.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 68, + 25 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0842.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0842.json" new file mode 100644 index 0000000000000000000000000000000000000000..f802e79cb25faa0a2a2d41516b09a74a5ee12a80 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0842.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 65, + 35 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0843.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0843.json" new file mode 100644 index 0000000000000000000000000000000000000000..ff8180d1b45cdd052a6261358b1a1ab008f129f9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0843.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 88, + 31 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0844.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0844.json" new file mode 100644 index 0000000000000000000000000000000000000000..cb54b8f724ba7f076aaffce19655bcef1d2e3ed7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0844.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 92, + 93 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0845.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0845.json" new file mode 100644 index 0000000000000000000000000000000000000000..45ae5c5730a73669debc8362eb65de60865e452b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0845.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 3, + 97 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0846.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0846.json" new file mode 100644 index 0000000000000000000000000000000000000000..716aa481215d6ca8347f7c49bbebd1e588a88652 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0846.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 80, + 90 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0847.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0847.json" new file mode 100644 index 0000000000000000000000000000000000000000..c7aa5f5486bf6e7de8a2b84f4cd03d4e7944740d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0847.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 8, + 2 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0848.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0848.json" new file mode 100644 index 0000000000000000000000000000000000000000..b3bd35985d3226e888e9bf1ddab9bd1671c61787 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0848.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 58, + 3 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0849.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0849.json" new file mode 100644 index 0000000000000000000000000000000000000000..189549eec27e7bb9fedcbeb6cc6a503e4f473496 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0849.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 69, + 8 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0850.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0850.json" new file mode 100644 index 0000000000000000000000000000000000000000..7ca093e94c69f65da27d702fc15ab71869f8476b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0850.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 52, + 88 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0851.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0851.json" new file mode 100644 index 0000000000000000000000000000000000000000..cb358ee353ddb1e9c380ecd7ad49342ef6a5049b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0851.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 8, + 89 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0852.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0852.json" new file mode 100644 index 0000000000000000000000000000000000000000..313380c3e678bc17476db1d38f08fd2403c07631 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0852.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 10, + 66 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0853.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0853.json" new file mode 100644 index 0000000000000000000000000000000000000000..4506084be3cf5fc1c96aaa5073b05ae73fb21fa5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0853.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 49, + 15 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0854.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0854.json" new file mode 100644 index 0000000000000000000000000000000000000000..f0e2a21ae0d4ac084fc07484b23b302fae26eeff --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0854.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.0", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 91, + 9 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0855.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0855.json" new file mode 100644 index 0000000000000000000000000000000000000000..c4522460e47308ad5c834af50c39e631c72b51c1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0855.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 75, + 22 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0856.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0856.json" new file mode 100644 index 0000000000000000000000000000000000000000..1501f471bc6a06798e7fd2bb9022fd30db8f3ac3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0856.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 50, + 88 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0857.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0857.json" new file mode 100644 index 0000000000000000000000000000000000000000..7da7307eb6a4c6e7f4556c1bd6f921435c99ea3b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0857.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 28, + 62 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0858.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0858.json" new file mode 100644 index 0000000000000000000000000000000000000000..c8b2289d93e9189f0472afbf04385674f610c874 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0858.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 68, + 6 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0859.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0859.json" new file mode 100644 index 0000000000000000000000000000000000000000..c705be25e37a98c8c89e37a9fa825ec364adc091 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0859.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 81, + 20 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0860.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0860.json" new file mode 100644 index 0000000000000000000000000000000000000000..fbc8798b185075b357e236c0102966906ddcd2b9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0860.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 34, + 28 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0861.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0861.json" new file mode 100644 index 0000000000000000000000000000000000000000..3240fea46ef872cb90ba3c47986a19f312ad1436 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0861.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 30, + 9 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0862.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0862.json" new file mode 100644 index 0000000000000000000000000000000000000000..9c30d5ccb359325396d4f11734dc371093ca6dd8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0862.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 20, + 100 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0863.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0863.json" new file mode 100644 index 0000000000000000000000000000000000000000..cbf45e8b7b5505ddbba3d0d5713f131676e5e93e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0863.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 43, + 69 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0864.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0864.json" new file mode 100644 index 0000000000000000000000000000000000000000..772b03cb8f284c112ebc214946244c9e0137612a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0864.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 68, + 11 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0865.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0865.json" new file mode 100644 index 0000000000000000000000000000000000000000..1e98a57a92fb288c5aec6b97f21ef4f0939e7eca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0865.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 75, + 17 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0866.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0866.json" new file mode 100644 index 0000000000000000000000000000000000000000..3251f15c13afc2a0cdf6711d2421f8a342c8bbe7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0866.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 62, + 21 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0867.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0867.json" new file mode 100644 index 0000000000000000000000000000000000000000..0bb8cbb78e634f6d14e01b005f17c91fe2a509d9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0867.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 52, + 89 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0868.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0868.json" new file mode 100644 index 0000000000000000000000000000000000000000..c32cb3bfe0c6ab9d6e22ed32f4a3a38e73728bac --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0868.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 39, + 38 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0869.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0869.json" new file mode 100644 index 0000000000000000000000000000000000000000..9bcff772c2be7ca5c6d8426a13b7b07c95a214a9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0869.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 67, + 85 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0870.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0870.json" new file mode 100644 index 0000000000000000000000000000000000000000..7e1ec2d2ce60eb9201f16050d81f07d5c1cdba1b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0870.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 88, + 64 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0871.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0871.json" new file mode 100644 index 0000000000000000000000000000000000000000..867b5f40d757f3ecdcdb037d7cdd3acb9a9d093e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0871.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 49, + 1 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0872.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0872.json" new file mode 100644 index 0000000000000000000000000000000000000000..8201669587386570fe4529520f8eb9f2bbabe4ea --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0872.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 99, + 100 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0873.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0873.json" new file mode 100644 index 0000000000000000000000000000000000000000..f548d16816149eada396f846c70bddfd07d63ba9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0873.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 24, + 85 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0874.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0874.json" new file mode 100644 index 0000000000000000000000000000000000000000..c21630d9f4b28a557f57520d8d85dddb04f66552 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0874.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 68, + 97 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0875.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0875.json" new file mode 100644 index 0000000000000000000000000000000000000000..a2d1181a8d563ac16d51268e09010c343fac26bb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0875.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 41, + 64 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0876.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0876.json" new file mode 100644 index 0000000000000000000000000000000000000000..28286268636032e22c774c49c405c055896e2349 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0876.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 74, + 44 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0877.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0877.json" new file mode 100644 index 0000000000000000000000000000000000000000..024b89a376f09ccbf222f8451ce6b86cff925ae0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0877.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 44, + 41 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0878.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0878.json" new file mode 100644 index 0000000000000000000000000000000000000000..3591406111aa48ab90ae2ce5ccc26937e43f2727 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0878.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 5, + 24 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0879.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0879.json" new file mode 100644 index 0000000000000000000000000000000000000000..e5296c37245ee14f079a76185ab05e7f651a7e0b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0879.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 85, + 35 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0880.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0880.json" new file mode 100644 index 0000000000000000000000000000000000000000..b03b750e5efa8a3432ad83038bb8672ffa5071db --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0880.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 46, + 49 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0881.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0881.json" new file mode 100644 index 0000000000000000000000000000000000000000..8afba2e9743022aa0876e7f6545ea942d7cf81d6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0881.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 40, + 90 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0882.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0882.json" new file mode 100644 index 0000000000000000000000000000000000000000..d35de6d5dd0bcedf9f85fb88c2724f2b4ae5a854 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0882.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 84, + 41 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0883.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0883.json" new file mode 100644 index 0000000000000000000000000000000000000000..1bd2cb50228b3ce70cde4ce4308e045b02408812 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0883.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 4, + 100 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0884.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0884.json" new file mode 100644 index 0000000000000000000000000000000000000000..80e3bf3fe6634b8f1acc4d46d43e9aa5494b7fdf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0884.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 60, + 79 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0885.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0885.json" new file mode 100644 index 0000000000000000000000000000000000000000..2de87a737780a535873d981ba3741d83703dc4db --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0885.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 33, + 20 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0886.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0886.json" new file mode 100644 index 0000000000000000000000000000000000000000..d4a5aff1ec011a89d0b348371a899be47a398ead --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0886.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 69, + 74 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0887.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0887.json" new file mode 100644 index 0000000000000000000000000000000000000000..d481fd549beba7b3b955120387cd7c78c1d41f7e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0887.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 26, + 43 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0888.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0888.json" new file mode 100644 index 0000000000000000000000000000000000000000..bf6525584303fdbd498dffe2e33eacdfa7a291e3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0888.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 50, + 34 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0889.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0889.json" new file mode 100644 index 0000000000000000000000000000000000000000..109a53daf52ab7ff0a25f780684ef1f6246ccb02 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0889.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 0, + 33 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0890.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0890.json" new file mode 100644 index 0000000000000000000000000000000000000000..4d48d9812374fc008c7f1dc73f7ef88da90cca1b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0890.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 34, + 25 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0891.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0891.json" new file mode 100644 index 0000000000000000000000000000000000000000..ef7e16f2d2656a188575be4d5ea52ef2f74cdd61 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0891.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 59, + 3 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0892.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0892.json" new file mode 100644 index 0000000000000000000000000000000000000000..b91431229e5d9c09cf9acacb153e7c96c6a175f4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0892.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 92, + 84 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0893.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0893.json" new file mode 100644 index 0000000000000000000000000000000000000000..565a0a59e5787b24a4ce14b8ce4968e0d6443ea7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0893.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "3.0", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 10, + 38 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0894.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0894.json" new file mode 100644 index 0000000000000000000000000000000000000000..a8ffb4f2f905b024fb2427021211ccba057b9e0d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0894.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 100, + 100 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0895.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0895.json" new file mode 100644 index 0000000000000000000000000000000000000000..d7413981a9308b799b14e25fa78ef360e7769a52 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0895.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 29, + 3 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0896.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0896.json" new file mode 100644 index 0000000000000000000000000000000000000000..4146582f4949b4d4b9647640f33385149159aa60 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0896.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 25, + 68 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0897.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0897.json" new file mode 100644 index 0000000000000000000000000000000000000000..ae0549068259a54d493919ed1def4750911f5a23 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0897.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 75, + 22 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0898.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0898.json" new file mode 100644 index 0000000000000000000000000000000000000000..222548140fb8459991bc5a0f712e6f53465cce3e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0898.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 68, + 88 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0899.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0899.json" new file mode 100644 index 0000000000000000000000000000000000000000..1887a31ad5b502cb914aacddb26ada9f17ab8fbf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0899.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 9, + 56 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0900.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0900.json" new file mode 100644 index 0000000000000000000000000000000000000000..b6dd2ea8bb57ee07137b6bda2e39616f8cde1374 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0900.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 31, + 40 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0901.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0901.json" new file mode 100644 index 0000000000000000000000000000000000000000..00432c386ff3513144c04f004a25f65495a49c9f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0901.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 57, + 25 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0902.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0902.json" new file mode 100644 index 0000000000000000000000000000000000000000..b6e28fdf66054fd617e0dd35ec17eb08483cb90b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0902.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 5, + 5 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0903.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0903.json" new file mode 100644 index 0000000000000000000000000000000000000000..d34479d89c7040f56ea80c10c84384afb2d39ed7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0903.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 17, + 28 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0904.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0904.json" new file mode 100644 index 0000000000000000000000000000000000000000..f39270f1e630034cecbd1df2777606702b9a6abf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0904.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 77, + 11 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0905.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0905.json" new file mode 100644 index 0000000000000000000000000000000000000000..d92e4d58613828f0ef63722da7f39ce8256ee6c7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0905.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 55, + 32 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0906.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0906.json" new file mode 100644 index 0000000000000000000000000000000000000000..7c2b05a72e763f6b70008ea95a4d5dd9c6db7c8e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0906.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 89, + 37 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0907.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0907.json" new file mode 100644 index 0000000000000000000000000000000000000000..ff6bb5c7b6b46c3af3c94511b2f1e202c102374d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0907.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 34, + 74 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0908.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0908.json" new file mode 100644 index 0000000000000000000000000000000000000000..c7a6820e732bff06baa6a66c603a7f3ad961b494 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0908.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 17, + 84 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0909.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0909.json" new file mode 100644 index 0000000000000000000000000000000000000000..c1a05ca009be587e4336dfba536b554d9621facd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0909.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 31, + 40 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0910.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0910.json" new file mode 100644 index 0000000000000000000000000000000000000000..4c65f007291e85d697f0ff4dfcae6ef7928ad9a4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0910.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 95, + 77 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0911.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0911.json" new file mode 100644 index 0000000000000000000000000000000000000000..b9bf9bcbf2cb262cd43f3d7b32824165e3109690 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0911.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 88, + 61 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0912.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0912.json" new file mode 100644 index 0000000000000000000000000000000000000000..deab07332ada12475056717317ef8e6054736829 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0912.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 75, + 73 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0913.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0913.json" new file mode 100644 index 0000000000000000000000000000000000000000..98ee4648e0eb137fa29bf84d9cbea5bd8d582e10 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0913.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 22, + 14 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0914.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0914.json" new file mode 100644 index 0000000000000000000000000000000000000000..003769858e36bd8c2dae5363680604f2a9e8135d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0914.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 1, + 100 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0915.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0915.json" new file mode 100644 index 0000000000000000000000000000000000000000..8859523d9b614e90ecc570910e2dd65e91b6c8cd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0915.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 75, + 22 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0916.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0916.json" new file mode 100644 index 0000000000000000000000000000000000000000..2145eba139e67156952443a59c43039aa383b94b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0916.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 20, + 19 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0917.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0917.json" new file mode 100644 index 0000000000000000000000000000000000000000..c6795fd96de01cecc2b8984d7b15ac6425ecffd1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0917.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 85, + 75 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0918.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0918.json" new file mode 100644 index 0000000000000000000000000000000000000000..84841c93ccb6f0042c79c355b4eda3fcb8756da2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0918.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 26, + 25 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0919.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0919.json" new file mode 100644 index 0000000000000000000000000000000000000000..cd6f74ed2f4f8d183908143950fa50136e158a12 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0919.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 43, + 47 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0920.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0920.json" new file mode 100644 index 0000000000000000000000000000000000000000..e812174533cb829c3811313b52b3b270f1d0f5ea --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0920.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 44, + 51 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0921.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0921.json" new file mode 100644 index 0000000000000000000000000000000000000000..bf1dda7dc7a0f724a054c0690c9b50f67928b905 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0921.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 58, + 35 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0922.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0922.json" new file mode 100644 index 0000000000000000000000000000000000000000..0098665b7f647f330c7b358ee4a2faae2e9c18a5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0922.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 57, + 96 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0923.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0923.json" new file mode 100644 index 0000000000000000000000000000000000000000..5f2938da18ca3553b12b29e89ce3af3c980452a1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0923.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 78, + 94 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0924.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0924.json" new file mode 100644 index 0000000000000000000000000000000000000000..01dca89a82102954aab0b9beb12edc31ed79d0af --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0924.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 47, + 98 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0925.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0925.json" new file mode 100644 index 0000000000000000000000000000000000000000..70bb226140f85434442b7162a14a1ddace99b5da --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0925.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 23, + 31 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0926.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0926.json" new file mode 100644 index 0000000000000000000000000000000000000000..ddc5ea66aa159657a7e4aa993d56dc4b94a21484 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0926.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 7, + 46 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0927.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0927.json" new file mode 100644 index 0000000000000000000000000000000000000000..1ec2e7b197fd29feaf6952c2f57ea6fd2f1b2aeb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0927.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 6, + 38 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0928.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0928.json" new file mode 100644 index 0000000000000000000000000000000000000000..cdd2bd418ff4cf5afb7069ef47a2633f3c6b5573 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0928.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 3, + 19 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0929.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0929.json" new file mode 100644 index 0000000000000000000000000000000000000000..b7183091113017fb2c2b41b2dcab153d4e866fb0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0929.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 60, + 94 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0930.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0930.json" new file mode 100644 index 0000000000000000000000000000000000000000..d1d063a2f1253ccb2ecc6444c86c3f41e346704c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0930.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 12, + 15 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0931.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0931.json" new file mode 100644 index 0000000000000000000000000000000000000000..4edddca4a75f70cf6578676d58716f8a7bbba076 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0931.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 15, + 55 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0932.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0932.json" new file mode 100644 index 0000000000000000000000000000000000000000..02ecf209e6c468ad4f87c78c5f7632c46b18ca48 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0932.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 74, + 84 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0933.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0933.json" new file mode 100644 index 0000000000000000000000000000000000000000..cb1c5e7e180f27a8baf5441f86c575f14686c477 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0933.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 96, + 17 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0934.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0934.json" new file mode 100644 index 0000000000000000000000000000000000000000..9958a3b7ab4a6e2fea33d3c4d3befefb0b96e106 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0934.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 67, + 24 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0935.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0935.json" new file mode 100644 index 0000000000000000000000000000000000000000..370798b24a98d10885c17392daf9eac0893fd197 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0935.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 52, + 27 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0936.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0936.json" new file mode 100644 index 0000000000000000000000000000000000000000..233644c6d60f0244d82378a9dfe6dcb79ed3569f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0936.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 32, + 34 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0937.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0937.json" new file mode 100644 index 0000000000000000000000000000000000000000..b993494d90fc2f7b2ebe97948c3d7909b238cf86 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0937.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 29, + 45 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0938.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0938.json" new file mode 100644 index 0000000000000000000000000000000000000000..24218e0e547d633f5dbdd5db16d22efbec12ed68 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0938.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 32, + 59 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0939.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0939.json" new file mode 100644 index 0000000000000000000000000000000000000000..650f03a204c4bb14dd4fdd5349c76d850fb0c0da --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0939.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 14, + 96 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0940.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0940.json" new file mode 100644 index 0000000000000000000000000000000000000000..5bf44c57d68359a8c0acdcb558007d64f8e582d9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0940.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 15, + 38 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0941.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0941.json" new file mode 100644 index 0000000000000000000000000000000000000000..b1e6a084ac83880993e852a298d48e00a3148a7e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0941.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 16, + 68 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0942.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0942.json" new file mode 100644 index 0000000000000000000000000000000000000000..2cb72a971b2c5801d661b9c3a038c4003dceabae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0942.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 13, + 90 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0943.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0943.json" new file mode 100644 index 0000000000000000000000000000000000000000..7f284c987932120ab3a9102d1049696365ae9182 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0943.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 61, + 54 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0944.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0944.json" new file mode 100644 index 0000000000000000000000000000000000000000..6cd532f731b010518f4ddf7e459adc8df2bb592f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0944.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 48, + 46 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0945.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0945.json" new file mode 100644 index 0000000000000000000000000000000000000000..616ac064e5230d922a6ca4d550d034c3aafc37d9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0945.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 53, + 21 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0946.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0946.json" new file mode 100644 index 0000000000000000000000000000000000000000..780b730e73716fc914656e1169b065f58004b75f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0946.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 18, + 2 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0947.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0947.json" new file mode 100644 index 0000000000000000000000000000000000000000..a717af2f81cd0198028edee3c04afc151ee1cc92 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0947.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playwrite DK Uloopet Guides", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 17, + 95 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0948.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0948.json" new file mode 100644 index 0000000000000000000000000000000000000000..238c2255b326c2992f25275949f9af2ec7c45e96 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0948.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 35, + 85 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0949.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0949.json" new file mode 100644 index 0000000000000000000000000000000000000000..d655e0de3d202a7f6f80745dc1e7d6331b1f8a48 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0949.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 46, + 4 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0950.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0950.json" new file mode 100644 index 0000000000000000000000000000000000000000..1ce795f5bcf295e4b52a3d402da8af1fcdf4d5db --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0950.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 7, + 30 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0951.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0951.json" new file mode 100644 index 0000000000000000000000000000000000000000..015bff2f7bc06ce8e78e119b3e2a7f2642d6cce1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0951.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 92, + 50 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0952.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0952.json" new file mode 100644 index 0000000000000000000000000000000000000000..ae3f612edd3b0034ee4bda21b10620d277d0834f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0952.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 71, + 10 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0953.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0953.json" new file mode 100644 index 0000000000000000000000000000000000000000..718fa420dd95a3edc2118e1d7eeb00a1149dfd00 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0953.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 92, + 1 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0954.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0954.json" new file mode 100644 index 0000000000000000000000000000000000000000..551c8e3ba3648afcdbdb2e069107a19870ac96ea --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0954.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 70, + 43 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0955.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0955.json" new file mode 100644 index 0000000000000000000000000000000000000000..6d2bf242a841af11afd2307b4cca66480970ce45 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0955.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 28, + 58 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0956.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0956.json" new file mode 100644 index 0000000000000000000000000000000000000000..5d23d2df7bcc975fdb522fd20a1b06273fe9c6b8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0956.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 10, + 8 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0957.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0957.json" new file mode 100644 index 0000000000000000000000000000000000000000..ba3257f318d384786da74ac95d0e7259f7e9eaa2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0957.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 53, + 96 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0958.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0958.json" new file mode 100644 index 0000000000000000000000000000000000000000..ccc489ad3afc270f0beb5c3a597cb601f6db822a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0958.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 80, + 53 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0959.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0959.json" new file mode 100644 index 0000000000000000000000000000000000000000..2a1efb116dfe6674d895393afd6a419aed579478 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0959.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.4", + "shadow": "3.0", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 44, + 45 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0960.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0960.json" new file mode 100644 index 0000000000000000000000000000000000000000..dcc2cc65630bc5e57b87377537bc081e546bd738 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0960.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 26, + 100 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0961.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0961.json" new file mode 100644 index 0000000000000000000000000000000000000000..05f67838393113f666cd54627839b80407f91cb2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0961.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 98, + 60 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0962.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0962.json" new file mode 100644 index 0000000000000000000000000000000000000000..560ed8fa427fb30105d4f0429a0a699f38915567 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0962.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 70, + 0 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0963.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0963.json" new file mode 100644 index 0000000000000000000000000000000000000000..89bb853172d1fa479fdcb84d12b500e7096a203b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0963.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 62, + 51 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0964.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0964.json" new file mode 100644 index 0000000000000000000000000000000000000000..b1f8d22d87335a1f4544488b161c7133262257b4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0964.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 67, + 81 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0965.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0965.json" new file mode 100644 index 0000000000000000000000000000000000000000..e057df3d914ba68de8a07f5d5e1a3133b5523d0c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0965.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 0, + 13 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0966.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0966.json" new file mode 100644 index 0000000000000000000000000000000000000000..d6ece7563ad178bac3ee298c2041dc95e1f74701 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0966.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 11, + 90 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0967.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0967.json" new file mode 100644 index 0000000000000000000000000000000000000000..639ceda26280648476520ed049dffeee20e5582b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0967.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 16, + 35 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0968.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0968.json" new file mode 100644 index 0000000000000000000000000000000000000000..822e641b9ababc62e6bfd2bc1b4c27c60f207def --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0968.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 22, + 34 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0969.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0969.json" new file mode 100644 index 0000000000000000000000000000000000000000..00050c73c46e4ff31d19bef02867f52f130f54ab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0969.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 81, + 19 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0970.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0970.json" new file mode 100644 index 0000000000000000000000000000000000000000..08669ab6c203d2ad6016eaf7c050bf7a0e997d71 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0970.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 93, + 52 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0971.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0971.json" new file mode 100644 index 0000000000000000000000000000000000000000..9f46fa16fba317e5a0ec1ad07496b10c1787d2b0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0971.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 78, + 33 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0972.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0972.json" new file mode 100644 index 0000000000000000000000000000000000000000..3978de8fa5b003182467deb55a901e5c1425f589 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0972.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 64, + 48 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0973.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0973.json" new file mode 100644 index 0000000000000000000000000000000000000000..cb2192c48ab5c41a6bbdbc2ebd5b9e19c8f8ad9c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0973.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 57, + 39 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0974.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0974.json" new file mode 100644 index 0000000000000000000000000000000000000000..e257af4a9a58f22a813e8605e115042dfedf2465 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0974.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 98, + 4 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0975.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0975.json" new file mode 100644 index 0000000000000000000000000000000000000000..28d3390b546c32136e08df0bb0b30ef7d072c836 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0975.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 50, + 63 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0976.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0976.json" new file mode 100644 index 0000000000000000000000000000000000000000..a7a3fba5366837a97782b95bd18049334173ba5c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0976.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 38, + 40 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0977.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0977.json" new file mode 100644 index 0000000000000000000000000000000000000000..ba094ae15b72e22031294341ed4d3f2274cc6406 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0977.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 58, + 36 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0978.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0978.json" new file mode 100644 index 0000000000000000000000000000000000000000..c6a48264fdd738db5bc64c5820b4e8fc70e6cf31 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0978.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "2.9", + "shadow": "3.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 9, + 27 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0979.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0979.json" new file mode 100644 index 0000000000000000000000000000000000000000..ff1460cbe90afa78bd763e875840c25c19c819ae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0979.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 32, + 24 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0980.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0980.json" new file mode 100644 index 0000000000000000000000000000000000000000..7a94e770b00eec0491828c6b265665ce8ccf1a9c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0980.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 27, + 93 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0981.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0981.json" new file mode 100644 index 0000000000000000000000000000000000000000..7b2e345125020a51a3df5678191120e41f5ab11a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0981.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 93, + 64 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0982.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0982.json" new file mode 100644 index 0000000000000000000000000000000000000000..c376efeaa1913baf696045c6f3822f90b1eb6dc0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0982.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 62, + 44 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0983.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0983.json" new file mode 100644 index 0000000000000000000000000000000000000000..070a5a676a09dd6ec362648d906d6c9546312cd5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0983.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 97, + 48 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0984.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0984.json" new file mode 100644 index 0000000000000000000000000000000000000000..9da6452f0189be6c50c2ee4c84104d523d08fb37 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0984.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 64, + 63 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0985.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0985.json" new file mode 100644 index 0000000000000000000000000000000000000000..690ead06c0c56d285a226f65e8bb5f25b7d4e25d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0985.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 87, + 38 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0986.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0986.json" new file mode 100644 index 0000000000000000000000000000000000000000..0c1a59b28f71a5c78276e7fa5fff53dc6b55e3f8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0986.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 0, + 66 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0987.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0987.json" new file mode 100644 index 0000000000000000000000000000000000000000..8276fae2322f3292d2538439aba1fd38471d19ba --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0987.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 83, + 92 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0988.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0988.json" new file mode 100644 index 0000000000000000000000000000000000000000..50d879628727c4c22cab4b094670b302c1f41ed8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0988.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 53, + 1 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0989.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0989.json" new file mode 100644 index 0000000000000000000000000000000000000000..7cb4e8bb4ae89e9753a1b9c7fc4af49b749d6b8f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0989.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 85, + 4 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0990.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0990.json" new file mode 100644 index 0000000000000000000000000000000000000000..54587df0981a372595f3a1c224bb30bd5291e542 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0990.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 10, + 3 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0991.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0991.json" new file mode 100644 index 0000000000000000000000000000000000000000..b150345da9371f5f446036704966638e929cd6b7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0991.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 3, + 34 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0992.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0992.json" new file mode 100644 index 0000000000000000000000000000000000000000..e47294e147067ea6bcfb067fc5ccca8a293fe4a5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0992.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 34, + 64 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0993.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0993.json" new file mode 100644 index 0000000000000000000000000000000000000000..b97007de63b09d5566e467e1f59be5c9c5b4db01 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0993.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 34, + 12 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0994.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0994.json" new file mode 100644 index 0000000000000000000000000000000000000000..98619c274192565348ab04325273210459ad4dc7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0994.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 78, + 4 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0995.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0995.json" new file mode 100644 index 0000000000000000000000000000000000000000..85fbd9ca522605ed4366532dc0bc0c3859fb1501 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0995.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 95, + 79 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0996.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0996.json" new file mode 100644 index 0000000000000000000000000000000000000000..b0659119e5699de364f626eaa07ed1186942e8eb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0996.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 49, + 38 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0997.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0997.json" new file mode 100644 index 0000000000000000000000000000000000000000..b277cd26b73455cdd0d9934c734e3aa816d196a3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0997.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 42, + 73 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0998.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0998.json" new file mode 100644 index 0000000000000000000000000000000000000000..b03a53d4d32f2b7f6e11bef3ad50652518d84815 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0998.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 50, + 80 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0999.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0999.json" new file mode 100644 index 0000000000000000000000000000000000000000..d60e5b34e0d51ed6dfed38acf4f6a8f630499341 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_0999.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 47, + 75 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1000.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1000.json" new file mode 100644 index 0000000000000000000000000000000000000000..59a7e4f45b896201288a9effb4ed658b645058c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1000.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 90, + 76 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1001.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1001.json" new file mode 100644 index 0000000000000000000000000000000000000000..88f9c0eaad3810e6e50886d9383cb7bb71aaea48 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1001.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 23, + 52 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1002.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1002.json" new file mode 100644 index 0000000000000000000000000000000000000000..43154b0986c7d95fa8f4c937877744646cabc73b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1002.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 67, + 50 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1003.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1003.json" new file mode 100644 index 0000000000000000000000000000000000000000..6ce0e55011cc4e20d65f4cb92bd19fc8aa95455d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1003.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 7, + 8 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1004.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1004.json" new file mode 100644 index 0000000000000000000000000000000000000000..78e8116f597805cf6afd7513d4d26cf28eb52f86 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1004.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 36, + 92 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1005.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1005.json" new file mode 100644 index 0000000000000000000000000000000000000000..aae197c19ec97fc10160fb4aa8667c71e1071a08 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1005.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 64, + 95 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1006.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1006.json" new file mode 100644 index 0000000000000000000000000000000000000000..aec60bb64f5feb4a04913716b89ee142cb7ef5d3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1006.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 84, + 23 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1007.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1007.json" new file mode 100644 index 0000000000000000000000000000000000000000..e377bc09a23521fca206d310c6bad6cbb9f84caa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1007.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 87, + 17 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1008.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1008.json" new file mode 100644 index 0000000000000000000000000000000000000000..4325cfcbcea1de9cb05da162576c5b1628c0c0f1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1008.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 8, + 17 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1009.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1009.json" new file mode 100644 index 0000000000000000000000000000000000000000..70cca34c94a95864ffe8e9de7770b3c0aa22d77c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1009.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 43, + 62 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1010.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1010.json" new file mode 100644 index 0000000000000000000000000000000000000000..fbc123259eac384f20ae0501d4a4949955b96755 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1010.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 100, + 17 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1011.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1011.json" new file mode 100644 index 0000000000000000000000000000000000000000..bee498d33651f118a27b40a48d71b51527780028 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1011.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 39, + 9 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1012.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1012.json" new file mode 100644 index 0000000000000000000000000000000000000000..b10bb6646bcaddf92b223208fd7ed6935b18cfaa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1012.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 28, + 87 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1013.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1013.json" new file mode 100644 index 0000000000000000000000000000000000000000..8dcd832e485e793a681c064364d1ddda170b4380 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1013.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 33, + 28 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1014.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1014.json" new file mode 100644 index 0000000000000000000000000000000000000000..69a64b940ba614b841e63647d79d2aee7594466b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1014.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 64, + 100 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1015.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1015.json" new file mode 100644 index 0000000000000000000000000000000000000000..c33cc8468ee3682b531ee44662e8adf5f3c8e8fc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1015.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 90, + 94 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1016.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1016.json" new file mode 100644 index 0000000000000000000000000000000000000000..9d3119eb8ef16c261d135c642c56d57de70c0460 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1016.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 9, + 45 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1017.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1017.json" new file mode 100644 index 0000000000000000000000000000000000000000..80f2474c97fdc9c66c3b8c06bd84203f786c0e28 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1017.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 58, + 89 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1018.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1018.json" new file mode 100644 index 0000000000000000000000000000000000000000..e35cb0c4bb898f72deb977e50d4733e3e78b1a9e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1018.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 18, + 85 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1019.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1019.json" new file mode 100644 index 0000000000000000000000000000000000000000..be0ca281af150e55e83badad4806cf03cde46f84 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1019.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 63, + 67 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1020.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1020.json" new file mode 100644 index 0000000000000000000000000000000000000000..593fa287d53ee8c77aaaa6f5a6de0f2089c34b89 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1020.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 75, + 54 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1021.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1021.json" new file mode 100644 index 0000000000000000000000000000000000000000..6159938506d124818f504de965b713059de49bfa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1021.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 3, + 87 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1022.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1022.json" new file mode 100644 index 0000000000000000000000000000000000000000..c259d5a963f108a5423b8c1e2c7bb9e7a5e8038f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1022.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 39, + 48 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1023.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1023.json" new file mode 100644 index 0000000000000000000000000000000000000000..7bbc7404bbfa89e5d9e5bbaf386372ead9eb2d68 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1023.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 84, + 29 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1024.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1024.json" new file mode 100644 index 0000000000000000000000000000000000000000..610ec972cfe86e135aa785dab7417e340696675f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1024.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 86, + 90 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1025.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1025.json" new file mode 100644 index 0000000000000000000000000000000000000000..35e5212df4644bddcd7f1b30d9700390bca2af09 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1025.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 9, + 3 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1026.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1026.json" new file mode 100644 index 0000000000000000000000000000000000000000..901b274ac0e088ea367f095484cbeefa98730131 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1026.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 49, + 38 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1027.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1027.json" new file mode 100644 index 0000000000000000000000000000000000000000..39b87931ae0076e802ddae52c356bfbbe3aaabf9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1027.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 98, + 15 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1028.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1028.json" new file mode 100644 index 0000000000000000000000000000000000000000..d1f009c3e7348c5158d47990e63fb64a1d63603e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1028.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 7, + 82 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1029.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1029.json" new file mode 100644 index 0000000000000000000000000000000000000000..60fcb33959a1401c32f5361f0a6a0050683b524f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1029.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 24, + 26 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1030.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1030.json" new file mode 100644 index 0000000000000000000000000000000000000000..5890fed9363d3ea1cda1520a75ea9ceb40873123 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1030.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 54, + 42 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1031.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1031.json" new file mode 100644 index 0000000000000000000000000000000000000000..2ec0e19668fbd77cfaff29c56992a7ad76d58f94 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1031.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 68, + 73 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1032.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1032.json" new file mode 100644 index 0000000000000000000000000000000000000000..c3c178652462377c2b17f3d8ec0d29fe69cc5929 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1032.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 84, + 35 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1033.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1033.json" new file mode 100644 index 0000000000000000000000000000000000000000..e2531d83efa35bb44d5a3af62f19007590dfbb3e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1033.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 24, + 85 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1034.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1034.json" new file mode 100644 index 0000000000000000000000000000000000000000..40d51a0cb8b0bddf2c28230c3d5dc6097b760638 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1034.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 86, + 27 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1035.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1035.json" new file mode 100644 index 0000000000000000000000000000000000000000..e5d7b417bb13eb7310fcf9ff04bd7c7e2d2c79a0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1035.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 14, + 47 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1036.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1036.json" new file mode 100644 index 0000000000000000000000000000000000000000..3b3bae8d1770c1669e5b2291bd241ca0fa366b57 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1036.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 87, + 89 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1037.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1037.json" new file mode 100644 index 0000000000000000000000000000000000000000..ab60f922ac6d484a17153c7393332e8cc075f2da --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1037.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 98, + 81 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1038.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1038.json" new file mode 100644 index 0000000000000000000000000000000000000000..3ff6471ff59af69188c43c1cf50df663ceee38b2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1038.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 8, + 69 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1039.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1039.json" new file mode 100644 index 0000000000000000000000000000000000000000..33b954f24b65c8e10ede18eb6cb9450fa40e6d3a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1039.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 0, + 77 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1040.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1040.json" new file mode 100644 index 0000000000000000000000000000000000000000..0fda5104db45018af9aee3fee522e42d733b69a5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1040.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 55, + 38 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1041.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1041.json" new file mode 100644 index 0000000000000000000000000000000000000000..fbfd97f8a4eca9ba197d4dcd958697b829a712a9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1041.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 69, + 20 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1042.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1042.json" new file mode 100644 index 0000000000000000000000000000000000000000..8394b0fae67fbafe29f25601108249e147b0b52f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1042.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 10, + 64 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1043.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1043.json" new file mode 100644 index 0000000000000000000000000000000000000000..fe14b18b7fb5493b264a064068a5bc2b6ee4c66e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1043.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 5, + 31 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1044.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1044.json" new file mode 100644 index 0000000000000000000000000000000000000000..b31413a8ad12771c242461ccce6c9f74ffd29f60 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1044.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 98, + 80 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1045.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1045.json" new file mode 100644 index 0000000000000000000000000000000000000000..2d1e1827a77364bd59d214c5f30023d0ebeeb8f5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1045.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 62, + 17 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1046.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1046.json" new file mode 100644 index 0000000000000000000000000000000000000000..eccf50e2546d38611241c7732b184fd841338a21 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1046.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 98, + 38 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1047.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1047.json" new file mode 100644 index 0000000000000000000000000000000000000000..0c6f0c505f2510527962936b379d6cc7a96a5069 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1047.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 72, + 7 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1048.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1048.json" new file mode 100644 index 0000000000000000000000000000000000000000..1e5e099e92b7a0e9c1c6035d0cce1a2b4d817cbf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1048.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 70, + 47 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1049.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1049.json" new file mode 100644 index 0000000000000000000000000000000000000000..7e64f4632f9a209a260e45f254a4d4c4f8a16aec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1049.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 74, + 90 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1050.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1050.json" new file mode 100644 index 0000000000000000000000000000000000000000..cdd9d06ce3ee0c22731fc1429afeb002710aab9f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1050.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 48, + 80 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1051.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1051.json" new file mode 100644 index 0000000000000000000000000000000000000000..6af142fc94e14497adac11d60d913aad31288c7c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1051.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 48, + 9 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1052.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1052.json" new file mode 100644 index 0000000000000000000000000000000000000000..42fdafddcb341fefb48659989b8cfce884bf9a0b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1052.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 90, + 87 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1053.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1053.json" new file mode 100644 index 0000000000000000000000000000000000000000..fc0d9b843a8286c3e397b9e6a9832bfc45be34df --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1053.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 44, + 93 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1054.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1054.json" new file mode 100644 index 0000000000000000000000000000000000000000..176d1b2f1d6653f7fe5e4b83ab275136efd6b2fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1054.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 47, + 6 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1055.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1055.json" new file mode 100644 index 0000000000000000000000000000000000000000..ae8509e603c34c9a5f0870477c5cee06a68f9da3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1055.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 77, + 1 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1056.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1056.json" new file mode 100644 index 0000000000000000000000000000000000000000..c0291be58074a0b2f080f3f36db28017a9bbf10a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1056.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 91, + 12 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1057.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1057.json" new file mode 100644 index 0000000000000000000000000000000000000000..b4ea1e264e8648944c16f14b1965be5925a11e48 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1057.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 90, + 49 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1058.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1058.json" new file mode 100644 index 0000000000000000000000000000000000000000..83614c9383ef708a9378e8de58111ee87cb1c9ad --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1058.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 38, + 86 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1059.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1059.json" new file mode 100644 index 0000000000000000000000000000000000000000..a5644cd483be4ef40705486a339296b294113906 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1059.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 71, + 45 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1060.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1060.json" new file mode 100644 index 0000000000000000000000000000000000000000..28217caf82067b58b0fa575c8188c687bd623e30 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1060.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 53, + 53 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1061.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1061.json" new file mode 100644 index 0000000000000000000000000000000000000000..a4fc5c8ff798aa56b42e77f64e6e5dd88d7ae4cc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1061.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 69, + 35 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1062.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1062.json" new file mode 100644 index 0000000000000000000000000000000000000000..71399ac0c986b2cf05fbe57abc3069298d78d4f9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1062.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 53, + 52 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1063.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1063.json" new file mode 100644 index 0000000000000000000000000000000000000000..8b73720e89e4cbf4ffa8447efc64787c2e17c222 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1063.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 37, + 98 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1064.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1064.json" new file mode 100644 index 0000000000000000000000000000000000000000..0961d2d29716d82f0f43ff699cd513db9ba0e512 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1064.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 37, + 47 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1065.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1065.json" new file mode 100644 index 0000000000000000000000000000000000000000..4ca68d87d6f2906e32028f7d3f9d61acb3be9d85 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1065.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 67, + 49 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1066.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1066.json" new file mode 100644 index 0000000000000000000000000000000000000000..c1ee069381272c763d9cd2796c67707bf260351a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1066.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 74, + 81 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1067.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1067.json" new file mode 100644 index 0000000000000000000000000000000000000000..427223175c63b39e86e5f40dc3d7d9224e569f4c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1067.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 1, + 82 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1068.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1068.json" new file mode 100644 index 0000000000000000000000000000000000000000..bb222ff5d82e33282a4438076dec9764c7a06d9c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1068.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 12, + 49 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1069.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1069.json" new file mode 100644 index 0000000000000000000000000000000000000000..6c00b48335b7511b5a44f4a4dacf35989e64a318 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1069.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 12, + 14 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1070.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1070.json" new file mode 100644 index 0000000000000000000000000000000000000000..785ffcbfff4fbb34f830c878ea1a47953c5073cb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1070.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 92, + 92 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1071.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1071.json" new file mode 100644 index 0000000000000000000000000000000000000000..53f3eecb05a2b448d8eee3b98ae5610ff32c630b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1071.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 69, + 95 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1072.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1072.json" new file mode 100644 index 0000000000000000000000000000000000000000..45c41bd193e30f43cc028731b82fa8007a47067d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1072.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 56, + 75 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1073.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1073.json" new file mode 100644 index 0000000000000000000000000000000000000000..c571a7cf6f3bba73c3044750c7c675a2a3f35279 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1073.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 20, + 14 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1074.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1074.json" new file mode 100644 index 0000000000000000000000000000000000000000..6a0ca0a4d48441f074beca5c6a7ca98a006feef8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1074.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 73, + 29 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1075.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1075.json" new file mode 100644 index 0000000000000000000000000000000000000000..38c29f9ca983177d0793ba9dfcd6f1c8c9650cde --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1075.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 65, + 77 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1076.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1076.json" new file mode 100644 index 0000000000000000000000000000000000000000..4e6dfcee47a1cb482b8a6effb45715631da839b5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1076.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 79, + 48 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1077.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1077.json" new file mode 100644 index 0000000000000000000000000000000000000000..53cf6e1e45925f858cbc146cdbd89600958e0f97 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1077.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 58, + 73 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1078.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1078.json" new file mode 100644 index 0000000000000000000000000000000000000000..9065a3348d5a71c6925082d836d8e395391796f9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1078.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 10, + 26 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1079.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1079.json" new file mode 100644 index 0000000000000000000000000000000000000000..d5e8be6fc7de29cd38419d8663874e5c987a3e65 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1079.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 85, + 50 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1080.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1080.json" new file mode 100644 index 0000000000000000000000000000000000000000..a19444f53353ee5c3f3e874c6a9433ff9e260117 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1080.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 59, + 43 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1081.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1081.json" new file mode 100644 index 0000000000000000000000000000000000000000..1adb553c0cbb5d79f6386c393a91d25c34c16d49 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1081.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 90, + 91 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1082.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1082.json" new file mode 100644 index 0000000000000000000000000000000000000000..dc4a1525b3ba9dd10dae60f90ecdc4eeb9189820 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1082.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 26, + 61 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1083.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1083.json" new file mode 100644 index 0000000000000000000000000000000000000000..a49f72fbfc6297d8110dfd89080eb0c050e3a57f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1083.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 65, + 2 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1084.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1084.json" new file mode 100644 index 0000000000000000000000000000000000000000..98dea810141533451bfa92e4f0d48c3a6e9dad5f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1084.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 84, + 76 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1085.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1085.json" new file mode 100644 index 0000000000000000000000000000000000000000..83c758f85b40a288462970963e88666f36e97e74 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1085.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 80, + 97 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1086.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1086.json" new file mode 100644 index 0000000000000000000000000000000000000000..2bf13a6e40e5d8d62b982bd48d03f810ae164b8c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1086.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 48, + 26 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1087.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1087.json" new file mode 100644 index 0000000000000000000000000000000000000000..cf52ab4703c62c1337a8a369e984aba48d122523 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1087.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 11, + 45 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1088.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1088.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac95eac30d2b1e08db328752d798a2990a14f951 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1088.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 27, + 48 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1089.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1089.json" new file mode 100644 index 0000000000000000000000000000000000000000..d94fdcfbfbdba766715b4524c196bfa431cba576 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1089.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 53, + 59 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1090.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1090.json" new file mode 100644 index 0000000000000000000000000000000000000000..eef24f8e210b249d9c2e357e881ae88f017d4767 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1090.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 20, + 27 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1091.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1091.json" new file mode 100644 index 0000000000000000000000000000000000000000..8cb85c8d78615c8ffe502bbf0a0140a4746b5d7a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1091.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 74, + 72 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1092.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1092.json" new file mode 100644 index 0000000000000000000000000000000000000000..c911e4e8212471c1d0d8ec1221fd171ee90c1016 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1092.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 71, + 48 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1093.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1093.json" new file mode 100644 index 0000000000000000000000000000000000000000..67b06c0ee4ad6c397d143bcb6ea13d342d8ae580 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1093.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 45, + 75 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1094.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1094.json" new file mode 100644 index 0000000000000000000000000000000000000000..98d5a4e232310bca46495a06f2db8026f26a8db2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1094.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 51, + 68 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1095.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1095.json" new file mode 100644 index 0000000000000000000000000000000000000000..c7669445feb311f3fde87956a95190942cc0925e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1095.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 41, + 33 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1096.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1096.json" new file mode 100644 index 0000000000000000000000000000000000000000..2b98d95dead4ef5b5615f445ced014ae91fd7f11 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1096.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 83, + 54 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1097.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1097.json" new file mode 100644 index 0000000000000000000000000000000000000000..100d6f3ac3c5e133d0f5891cbd8ef7377609f6bc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1097.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 87, + 36 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1098.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1098.json" new file mode 100644 index 0000000000000000000000000000000000000000..3490af257a3558299edf39288516753c0e520ffc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1098.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 74, + 73 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1099.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1099.json" new file mode 100644 index 0000000000000000000000000000000000000000..d082bb4c1e37920fc64f12e2f216d625abf7a1f4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1099.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Padauk", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 41, + 47 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1100.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1100.json" new file mode 100644 index 0000000000000000000000000000000000000000..cad062c7caafa4284995509b21fb395a0aef0f3f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1100.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 36, + 51 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1101.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1101.json" new file mode 100644 index 0000000000000000000000000000000000000000..f13066037da49a1ac5c1a16d788a4cafb4faae36 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1101.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 56, + 47 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1102.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1102.json" new file mode 100644 index 0000000000000000000000000000000000000000..d8cc53f6f14f9595d067076675b43a0f2a30c39b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1102.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Padauk", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 83, + 0 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1103.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1103.json" new file mode 100644 index 0000000000000000000000000000000000000000..7b9b15f4d6099891fdb042e6a4f962c02f02ae77 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1103.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 14, + 1 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1104.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1104.json" new file mode 100644 index 0000000000000000000000000000000000000000..21afe9977abd223a72f582184869a6a590cddab9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1104.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 67, + 39 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1105.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1105.json" new file mode 100644 index 0000000000000000000000000000000000000000..41ee6473057805b9f3a0c0f78d048e4626eadd7f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1105.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 46, + 57 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1106.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1106.json" new file mode 100644 index 0000000000000000000000000000000000000000..c7b20c1af7c23769440ceee726b356209b18e68f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1106.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 54, + 3 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1107.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1107.json" new file mode 100644 index 0000000000000000000000000000000000000000..44cef9470ce2f128e2417fd195f0f7e610b90e28 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1107.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 0, + 26 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1108.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1108.json" new file mode 100644 index 0000000000000000000000000000000000000000..5f590e6038d7099b08b2834094b98672163f95ec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1108.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 71, + 55 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1109.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1109.json" new file mode 100644 index 0000000000000000000000000000000000000000..88030616fb4d7bbb900fd311f3247510150c4dcf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1109.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 27, + 99 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1110.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1110.json" new file mode 100644 index 0000000000000000000000000000000000000000..132cb93adb95a17e5c6a89312169bec60f34434c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1110.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 98, + 27 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1111.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1111.json" new file mode 100644 index 0000000000000000000000000000000000000000..d594d0ca8685f80be0f0900a591e4a55c8d140e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1111.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 25, + 72 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1112.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1112.json" new file mode 100644 index 0000000000000000000000000000000000000000..74ff2cbc52de3fb69f7092f9407d75def6fb75c4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1112.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 20, + 41 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1113.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1113.json" new file mode 100644 index 0000000000000000000000000000000000000000..555ccafbe82ed05ffd14f1f09c2ce0cd5093edb0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1113.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 34, + 5 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1114.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1114.json" new file mode 100644 index 0000000000000000000000000000000000000000..df1e6523c6dbdd8733863e627791a6033a643e62 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1114.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 38, + 10 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1115.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1115.json" new file mode 100644 index 0000000000000000000000000000000000000000..6688811344ab9aecf504ebffd30817f6ebf79ce4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1115.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 0, + 91 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1116.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1116.json" new file mode 100644 index 0000000000000000000000000000000000000000..168d481ece63b7ba77e775ba867d07db7b229da6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1116.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 89, + 54 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1117.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1117.json" new file mode 100644 index 0000000000000000000000000000000000000000..19f54066462c1a36db45308586f3ed38b7cda9f0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1117.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 61, + 65 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1118.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1118.json" new file mode 100644 index 0000000000000000000000000000000000000000..6c2191189e13a504ff98097df008c974e1857a75 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1118.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 2, + 52 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1119.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1119.json" new file mode 100644 index 0000000000000000000000000000000000000000..b467745bb5f6d64341442313930e0547a0c0cba7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1119.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 1, + 90 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1120.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1120.json" new file mode 100644 index 0000000000000000000000000000000000000000..5187f8dbfc89549db0d418787dc0c19d4ea5776a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1120.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 77, + 91 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1121.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1121.json" new file mode 100644 index 0000000000000000000000000000000000000000..b8067c458d2f8e6bd5c12eaea377dff289633125 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1121.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.4", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 100, + 61 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1122.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1122.json" new file mode 100644 index 0000000000000000000000000000000000000000..591977974c4dd427ad6d54529b5c57470fca2ffc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1122.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 13, + 31 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1123.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1123.json" new file mode 100644 index 0000000000000000000000000000000000000000..f39fb219e0fa0a34df7e11277b1e83235d94e239 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1123.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 71, + 83 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1124.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1124.json" new file mode 100644 index 0000000000000000000000000000000000000000..7238e2ad4b33fff06acbce0d9dbbe8ffa6a3038f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1124.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 86, + 96 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1125.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1125.json" new file mode 100644 index 0000000000000000000000000000000000000000..574fb8f84802d9b4b24952b4eb4e848d04e6ad1b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1125.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 69, + 74 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1126.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1126.json" new file mode 100644 index 0000000000000000000000000000000000000000..46fc1b6f2b509686d3e6da111a677626d7c562cb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1126.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.6", + "shadow": "3.0", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 71, + 15 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1127.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1127.json" new file mode 100644 index 0000000000000000000000000000000000000000..df2345ea891964dd29cb7868d06384efd10060f9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1127.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 2, + 11 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1128.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1128.json" new file mode 100644 index 0000000000000000000000000000000000000000..1800b1ea13030dd31e997205ee40f042b6d4b4f9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1128.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 36, + 0 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1129.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1129.json" new file mode 100644 index 0000000000000000000000000000000000000000..4b263cb4a0898829c888d0b7466fe0bc7108fb34 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1129.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 43, + 76 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1130.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1130.json" new file mode 100644 index 0000000000000000000000000000000000000000..0ea1c4d21497e430b1f27466871de0886bcba7c0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1130.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 25, + 76 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1131.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1131.json" new file mode 100644 index 0000000000000000000000000000000000000000..8fbbce75cb8ec6c98c63e8756b3a92c88aecd47e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1131.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 30, + 12 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1132.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1132.json" new file mode 100644 index 0000000000000000000000000000000000000000..1cbd5dd6f6a0d5c898b3b8aac9051bfaba6fd9e1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1132.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 9, + 28 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1133.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1133.json" new file mode 100644 index 0000000000000000000000000000000000000000..34455368fd5793670039473632d909519c1db4d6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1133.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 5, + 97 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1134.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1134.json" new file mode 100644 index 0000000000000000000000000000000000000000..ade2fae5d2a57359418275e3d6c7571ddc06caa0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1134.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 10, + 18 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1135.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1135.json" new file mode 100644 index 0000000000000000000000000000000000000000..3c4e375ba601cf0fccb1d712d3f87254e8dd4d22 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1135.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 83, + 72 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1136.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1136.json" new file mode 100644 index 0000000000000000000000000000000000000000..2e75cde2eedbd7b440b7ce43c4298c8c4a10e044 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1136.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 86, + 46 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1137.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1137.json" new file mode 100644 index 0000000000000000000000000000000000000000..f457c739df0bed6c275690bcb9908f4193629998 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1137.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 66, + 45 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1138.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1138.json" new file mode 100644 index 0000000000000000000000000000000000000000..1650ca3a56bed5f018d0e03be4a4567516414e91 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1138.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 1, + 30 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1139.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1139.json" new file mode 100644 index 0000000000000000000000000000000000000000..957685c0a127af61830fc899538d8d7560b29005 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1139.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.0", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 18, + 62 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1140.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1140.json" new file mode 100644 index 0000000000000000000000000000000000000000..480d95ed3adf9b4a856f65662ffcb5a2a28bc159 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1140.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito Sans", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 83, + 72 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1141.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1141.json" new file mode 100644 index 0000000000000000000000000000000000000000..a2e9d27cd4a96dfb7401373af3984e44c64fe484 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1141.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 100, + 45 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1142.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1142.json" new file mode 100644 index 0000000000000000000000000000000000000000..884d8c9f1fca1ba9f078f639d92bc495dbfecf54 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1142.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 35, + 41 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1143.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1143.json" new file mode 100644 index 0000000000000000000000000000000000000000..afaffefba950579ca9d7077e4f5eeefd9209306d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1143.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 94, + 56 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1144.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1144.json" new file mode 100644 index 0000000000000000000000000000000000000000..4c2a107069cb19a287a8b0898313dcf1792ee77e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1144.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 29, + 27 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1145.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1145.json" new file mode 100644 index 0000000000000000000000000000000000000000..992081f7a57168e807e1d3488b171064cbdc18ec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1145.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 15, + 60 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1146.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1146.json" new file mode 100644 index 0000000000000000000000000000000000000000..88771c89baeba8b0e866314612b3a5d570ce3dc5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1146.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 12, + 84 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1147.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1147.json" new file mode 100644 index 0000000000000000000000000000000000000000..94f9baeee9a9b6a759e5b65db7f0ed4f67fe715c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1147.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 59, + 48 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1148.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1148.json" new file mode 100644 index 0000000000000000000000000000000000000000..16b619ae7c125ee669cd96baff8b87563daa5d74 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1148.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 3, + 96 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1149.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1149.json" new file mode 100644 index 0000000000000000000000000000000000000000..55ecc829a89036e45e5d9d18ad524534df42147b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1149.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 38, + 86 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1150.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1150.json" new file mode 100644 index 0000000000000000000000000000000000000000..20be6a8e64be062780d80873692c86ff916b7759 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1150.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 81, + 85 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1151.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1151.json" new file mode 100644 index 0000000000000000000000000000000000000000..e67923645e1bbb9e7a7d8704b32490a55c35eb1a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1151.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 61, + 92 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1152.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1152.json" new file mode 100644 index 0000000000000000000000000000000000000000..62b1e80a8032159f01a3e8bff0eeb640e36f9bff --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1152.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 14, + 98 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1153.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1153.json" new file mode 100644 index 0000000000000000000000000000000000000000..1672f4c0105a09cb99f154cb4edb0d11d7f7a3e5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1153.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 41, + 0 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1154.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1154.json" new file mode 100644 index 0000000000000000000000000000000000000000..0752f0699f3a1fcb4c9559bffbd52ce548132e48 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1154.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 51, + 74 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1155.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1155.json" new file mode 100644 index 0000000000000000000000000000000000000000..fb3a0b8965d6da788e00561af2d40787994ed430 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1155.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 80, + 8 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1156.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1156.json" new file mode 100644 index 0000000000000000000000000000000000000000..0aedf5cda61aaf5be0e1d9ab3cb76c4b626f1d02 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1156.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 6, + 95 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1157.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1157.json" new file mode 100644 index 0000000000000000000000000000000000000000..9c5835aba51dd3cdb9ce8b0d7df1b640c0e2b20d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1157.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 15, + 74 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1158.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1158.json" new file mode 100644 index 0000000000000000000000000000000000000000..b7aea0e16240ea7e822e09840f72d5c148562c18 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1158.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 79, + 26 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1159.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1159.json" new file mode 100644 index 0000000000000000000000000000000000000000..dfee1ef17e977fa15a17192cca0e35422e708e21 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1159.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 50, + 97 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1160.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1160.json" new file mode 100644 index 0000000000000000000000000000000000000000..4ea23cb0e67fcc77f613c60750a8c178b1221a72 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1160.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 40, + 97 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1161.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1161.json" new file mode 100644 index 0000000000000000000000000000000000000000..d55404529f21c6ce6fd886a16ce9c1ba7a0f48e4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1161.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 79, + 48 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1162.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1162.json" new file mode 100644 index 0000000000000000000000000000000000000000..facf3390676c6a0e1c967e471dae03e4e20eeacd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1162.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 17, + 51 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1163.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1163.json" new file mode 100644 index 0000000000000000000000000000000000000000..a92bb23fa09921bc97622af37ae5406ea8bc194a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1163.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 82, + 45 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1164.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1164.json" new file mode 100644 index 0000000000000000000000000000000000000000..b56e1fd1e5d7f59f1efa77da48384b2d0bc096f5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1164.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 54, + 55 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1165.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1165.json" new file mode 100644 index 0000000000000000000000000000000000000000..aafaa87a6fd1a7cd9f1fe87ebc8db415e99b729e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1165.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 70, + 98 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1166.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1166.json" new file mode 100644 index 0000000000000000000000000000000000000000..b4d59cfeb96703292f8ff3083fe1b0357be57634 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1166.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 38, + 59 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1167.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1167.json" new file mode 100644 index 0000000000000000000000000000000000000000..b48572c5666546d1c121035ec69d67e7a3036fa8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1167.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 96, + 43 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1168.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1168.json" new file mode 100644 index 0000000000000000000000000000000000000000..a3c298e7f558bb2bc4531df933fd8ab1f2bf0fc1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1168.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 24, + 37 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1169.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1169.json" new file mode 100644 index 0000000000000000000000000000000000000000..c5550894db785f156e557c0d071ec4777dec2f43 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1169.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 41, + 43 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1170.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1170.json" new file mode 100644 index 0000000000000000000000000000000000000000..f8700c1455bc1ae842229e9c87f992cca8b2a9f2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1170.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 60, + 88 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1171.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1171.json" new file mode 100644 index 0000000000000000000000000000000000000000..23abf2900f9b8bf7c426f66d751f9f9bb51bb947 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1171.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 29, + 34 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1172.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1172.json" new file mode 100644 index 0000000000000000000000000000000000000000..3d59d1fa97d683dcc9dc084403493fcdf8e8946b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1172.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 28, + 89 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1173.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1173.json" new file mode 100644 index 0000000000000000000000000000000000000000..325087b1e29e46f4d95222f894dcc0d7990761e6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1173.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 54, + 73 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1174.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1174.json" new file mode 100644 index 0000000000000000000000000000000000000000..9807edea3abf269dbcfea9e1989220996a14002b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1174.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 100, + 32 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1175.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1175.json" new file mode 100644 index 0000000000000000000000000000000000000000..051712a5038023426f43f0d148f7c04531e8f4d5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1175.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 52, + 94 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1176.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1176.json" new file mode 100644 index 0000000000000000000000000000000000000000..b62e7c05912016361dfafa63a36bf43f84b8bf4a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1176.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 25, + 49 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1177.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1177.json" new file mode 100644 index 0000000000000000000000000000000000000000..69ec74a6dda13b27446ab8c66548405f7374bcdd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1177.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 60, + 100 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1178.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1178.json" new file mode 100644 index 0000000000000000000000000000000000000000..401602e11484763d2ff1c4492689590c44c80285 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1178.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 40, + 7 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1179.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1179.json" new file mode 100644 index 0000000000000000000000000000000000000000..b6a659da7d038f8d35533964cd984bdde84dfb46 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1179.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 75, + 3 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1180.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1180.json" new file mode 100644 index 0000000000000000000000000000000000000000..02ee8fe0a3315f1f12d5ff4e5c498eeb45f01aa4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1180.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 67, + 51 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1181.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1181.json" new file mode 100644 index 0000000000000000000000000000000000000000..aa284d13d772f3886c3d9f5180f1eace2e624a63 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1181.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 73, + 26 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1182.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1182.json" new file mode 100644 index 0000000000000000000000000000000000000000..51871c38ccbd412f4b9e55fbc3ddd1a0231b828a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1182.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 52, + 94 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1183.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1183.json" new file mode 100644 index 0000000000000000000000000000000000000000..55af75af227c1ad5cd0f45bd9efb0d3ec62f9372 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1183.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 70, + 58 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1184.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1184.json" new file mode 100644 index 0000000000000000000000000000000000000000..e00eadad3b1e90880533b9b7a6ed29a4b771ea32 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1184.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 17, + 72 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1185.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1185.json" new file mode 100644 index 0000000000000000000000000000000000000000..29cdf5df1021553d5e297c2a41b220652ef76c2b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1185.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 15, + 50 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1186.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1186.json" new file mode 100644 index 0000000000000000000000000000000000000000..f3becbedb3b20cf662164011853beab1247f497f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1186.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 27, + 71 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1187.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1187.json" new file mode 100644 index 0000000000000000000000000000000000000000..ee1c76617f94af1851f0ce407751daa5d011668c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1187.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 64, + 60 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1188.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1188.json" new file mode 100644 index 0000000000000000000000000000000000000000..245f4069af7db69b4c1cce12ea031bfb9cce689b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1188.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 49, + 14 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1189.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1189.json" new file mode 100644 index 0000000000000000000000000000000000000000..27b7a2f1ac6d74634f7f8dd8eedc15318dc4b14f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1189.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 96, + 89 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1190.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1190.json" new file mode 100644 index 0000000000000000000000000000000000000000..f00773fcd132bf6c928a8fa77c98a5b4fdbe2242 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1190.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 72, + 70 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1191.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1191.json" new file mode 100644 index 0000000000000000000000000000000000000000..e63b4eb5b2d77084b6c3ac429fbe322f9ea92ad2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1191.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 20, + 33 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1192.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1192.json" new file mode 100644 index 0000000000000000000000000000000000000000..7a16e588f6cccd8eeaafb323c6a5e4381964174a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1192.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 21, + 58 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1193.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1193.json" new file mode 100644 index 0000000000000000000000000000000000000000..ec73ab32cb02c5ac37b50a0eb3db0ec8a5a5d30b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1193.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 24, + 41 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1194.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1194.json" new file mode 100644 index 0000000000000000000000000000000000000000..23dd221f8230dc171b0dfa114226cb7299456e94 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1194.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 24, + 59 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1195.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1195.json" new file mode 100644 index 0000000000000000000000000000000000000000..ffc16e5ba3fdb4cb0e6f2b7fa4f18653d894839a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1195.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 0, + 40 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1196.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1196.json" new file mode 100644 index 0000000000000000000000000000000000000000..b6190306b3aff11e00b248d5add747333fab5aff --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1196.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 93, + 19 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1197.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1197.json" new file mode 100644 index 0000000000000000000000000000000000000000..eb832d295dc0b53780178537320e487ac7dbf009 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1197.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 30, + 26 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1198.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1198.json" new file mode 100644 index 0000000000000000000000000000000000000000..5b7401988d4f6254eefefbd9bcc61e6cc0c23691 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1198.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 98, + 18 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1199.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1199.json" new file mode 100644 index 0000000000000000000000000000000000000000..088143c15af742ae02cecb673c18c762e76dffb0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1199.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 93, + 60 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1200.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1200.json" new file mode 100644 index 0000000000000000000000000000000000000000..e6aa785e4c1d86ffb571fee3c6b4958ff813266c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1200.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 57, + 55 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1201.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1201.json" new file mode 100644 index 0000000000000000000000000000000000000000..daf21e55a747142a61b2a27149d7ac25f9152cfe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1201.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 93, + 70 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1202.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1202.json" new file mode 100644 index 0000000000000000000000000000000000000000..8d318b068c52d681076ec8e5b9aaddc7acc064ca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1202.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 43, + 69 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1203.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1203.json" new file mode 100644 index 0000000000000000000000000000000000000000..2a5957f47d544694c8f537071939059e7566233f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1203.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 97, + 89 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1204.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1204.json" new file mode 100644 index 0000000000000000000000000000000000000000..c4d4b436924db425ec964077766e9c0ff65b124a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1204.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 74, + 81 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1205.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1205.json" new file mode 100644 index 0000000000000000000000000000000000000000..61bf9626430a4e88a23482925dad6581235a9e8c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1205.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 26, + 54 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1206.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1206.json" new file mode 100644 index 0000000000000000000000000000000000000000..4f26d1c682232f1292c13bda371f025535b3265a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1206.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 34, + 91 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1207.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1207.json" new file mode 100644 index 0000000000000000000000000000000000000000..68af58cb6a8dbb984a564254605fff6d7371d973 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1207.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 31, + 56 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1208.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1208.json" new file mode 100644 index 0000000000000000000000000000000000000000..5b045d1edde3aea65a91dd4d2f12d6c07bac77fb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1208.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 100, + 79 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1209.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1209.json" new file mode 100644 index 0000000000000000000000000000000000000000..d8eeac98c72cd1b9f904f5e91c76a1836e11f2c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1209.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 75, + 45 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1210.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1210.json" new file mode 100644 index 0000000000000000000000000000000000000000..cf418e1b109ff24729ce379365cb279ad0653c4c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1210.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 75, + 99 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1211.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1211.json" new file mode 100644 index 0000000000000000000000000000000000000000..476128c2b8368945198caa7d9b3c2fe02d506424 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1211.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 1, + 34 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1212.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1212.json" new file mode 100644 index 0000000000000000000000000000000000000000..1d79c55e21f5826c42a2bf45497130a5f276d865 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1212.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 58, + 8 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1213.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1213.json" new file mode 100644 index 0000000000000000000000000000000000000000..baadb10f0010d2edbecd4374b8a7bc727eeee7dc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1213.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 99, + 79 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1214.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1214.json" new file mode 100644 index 0000000000000000000000000000000000000000..fcad3829fc3b46395c62dea8ca4db30c8fd3839b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1214.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 66, + 81 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1215.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1215.json" new file mode 100644 index 0000000000000000000000000000000000000000..1e3a4e0b0c8ce79c99fc85c29d45c71edd97d0e7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1215.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 20, + 82 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1216.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1216.json" new file mode 100644 index 0000000000000000000000000000000000000000..667e0112bf54bfd9e0627b0ae719ee5a0fe941e5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1216.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.4", + "shadow": "3.0", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 4, + 59 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1217.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1217.json" new file mode 100644 index 0000000000000000000000000000000000000000..f89e93c06e87ea2b7d8d575333a72fe09faa4644 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1217.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 44, + 43 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1218.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1218.json" new file mode 100644 index 0000000000000000000000000000000000000000..11ac9d585cfbe750f055edd0a43b7559df1daa0a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1218.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 95, + 31 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1219.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1219.json" new file mode 100644 index 0000000000000000000000000000000000000000..b8f55a0a8ead10226ee77df33a775de11f55f2af --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1219.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 53, + 57 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1220.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1220.json" new file mode 100644 index 0000000000000000000000000000000000000000..9df3a9a0298272da78dc742d40905889d2fa2c58 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1220.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 1, + 47 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1221.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1221.json" new file mode 100644 index 0000000000000000000000000000000000000000..99fe5c6fcf2a00a7b8143e17fa0506ea95b8a6f2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1221.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 52, + 52 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1222.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1222.json" new file mode 100644 index 0000000000000000000000000000000000000000..ef2aa0adc2e6f11e5e5751bcf12f30e721e363a5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1222.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 59, + 42 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1223.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1223.json" new file mode 100644 index 0000000000000000000000000000000000000000..1dac7869f9a42611023ac5a34801c4b7a82f84a8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1223.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 96, + 68 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1224.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1224.json" new file mode 100644 index 0000000000000000000000000000000000000000..e8947a9fa236b3ada8be491bfc100e3ea8af6d3c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1224.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 42, + 52 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1225.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1225.json" new file mode 100644 index 0000000000000000000000000000000000000000..4674929a4908499ca719fe4eeca6a995b13b1b0d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1225.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 8, + 35 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1226.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1226.json" new file mode 100644 index 0000000000000000000000000000000000000000..2cfdde45b82e89c4d82ac18d089221c750ac6727 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1226.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 84, + 2 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1227.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1227.json" new file mode 100644 index 0000000000000000000000000000000000000000..21b218b861de8834ae4332f50607b9915cd5ace5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1227.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 16, + 66 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1228.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1228.json" new file mode 100644 index 0000000000000000000000000000000000000000..5131e46645617bcf30206d1f0defd8a550c12f3b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1228.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 25, + 62 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1229.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1229.json" new file mode 100644 index 0000000000000000000000000000000000000000..c967479f2a0a3998e5e5d50be4742bac1b1418f4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1229.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 79, + 15 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1230.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1230.json" new file mode 100644 index 0000000000000000000000000000000000000000..9f8de1ddaf0bbab0b085d182c148c8c631c1ee82 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1230.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 71, + 45 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1231.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1231.json" new file mode 100644 index 0000000000000000000000000000000000000000..c04e091eafa840df8eb37236d8b28c1eef2c4c6d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1231.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 72, + 80 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1232.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1232.json" new file mode 100644 index 0000000000000000000000000000000000000000..8285c8a3df05342eafa78e3ca2322dca7a210c9d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1232.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 68, + 18 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1233.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1233.json" new file mode 100644 index 0000000000000000000000000000000000000000..f19389e56b022fd5fbb3409058a9953934302664 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1233.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 87, + 30 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1234.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1234.json" new file mode 100644 index 0000000000000000000000000000000000000000..5b97999db4a592e98931770eaa98627495e5b0df --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1234.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 20, + 92 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1235.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1235.json" new file mode 100644 index 0000000000000000000000000000000000000000..05bed8a2efad2b5c833dd367cf09d1c408d76e52 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1235.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 54, + 20 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1236.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1236.json" new file mode 100644 index 0000000000000000000000000000000000000000..351f79db70d522ceef3302fb645b7a0787d274fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1236.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 36, + 41 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1237.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1237.json" new file mode 100644 index 0000000000000000000000000000000000000000..f0afbb4a1b6fc05c8c2d231808153f9cd95931e6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1237.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 30, + 98 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1238.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1238.json" new file mode 100644 index 0000000000000000000000000000000000000000..8c00b22bacc3555ac094c8914d535e3771b14380 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1238.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 99, + 18 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1239.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1239.json" new file mode 100644 index 0000000000000000000000000000000000000000..08238591b4563b939ad1e00bdbebe73cf48f44fc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1239.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 62, + 4 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1240.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1240.json" new file mode 100644 index 0000000000000000000000000000000000000000..846b3e19597a3864b637dda4485bf88edd1dc80a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1240.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 34, + 98 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1241.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1241.json" new file mode 100644 index 0000000000000000000000000000000000000000..d719256bcf1e0cea4642f54722854b0eb44e9bfe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1241.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 91, + 70 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1242.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1242.json" new file mode 100644 index 0000000000000000000000000000000000000000..7492a480f29a52251f861327a21324fb7bdf5c30 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1242.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 27, + 97 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1243.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1243.json" new file mode 100644 index 0000000000000000000000000000000000000000..c0e32a52c67e59c233a051af434ee4e69fbf0d1a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1243.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 33, + 15 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1244.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1244.json" new file mode 100644 index 0000000000000000000000000000000000000000..e99d422af1d3b94b1e68ecc05c4f84aa4e1a6ed3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1244.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 98, + 92 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1245.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1245.json" new file mode 100644 index 0000000000000000000000000000000000000000..33a64adbe7316e3242b4a507f7c013bf89465c0d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1245.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 68, + 61 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1246.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1246.json" new file mode 100644 index 0000000000000000000000000000000000000000..75c00ae14140993b21abce1d2795b466ae0a0089 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1246.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 27, + 10 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1247.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1247.json" new file mode 100644 index 0000000000000000000000000000000000000000..84d185fd11c465847542071628f3cab667b41dae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1247.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 8, + 49 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1248.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1248.json" new file mode 100644 index 0000000000000000000000000000000000000000..5f9ef87f44fae14d2be282eb65fc320af8f60879 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1248.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 0, + 50 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1249.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1249.json" new file mode 100644 index 0000000000000000000000000000000000000000..2a2e8913acd1091a5e21bb63147b04db7b9876f8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1249.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 30, + 84 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1250.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1250.json" new file mode 100644 index 0000000000000000000000000000000000000000..7f77d736ab0a5174fae45bef60bda45ce8b2a6c0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1250.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 78, + 31 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1251.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1251.json" new file mode 100644 index 0000000000000000000000000000000000000000..e7785165be1e8cc92fb5c877173c75a8f3a3e894 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1251.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 68, + 69 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1252.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1252.json" new file mode 100644 index 0000000000000000000000000000000000000000..dc3c8bf93699d4f05da73fff200686c4367f159b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1252.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 6, + 81 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1253.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1253.json" new file mode 100644 index 0000000000000000000000000000000000000000..ec1e9cb3b80b697bf4a32bd752a096043301493f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1253.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 78, + 2 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1254.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1254.json" new file mode 100644 index 0000000000000000000000000000000000000000..6e0173ffe197d24d013eeade0b3651504fae0660 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1254.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 14, + 21 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1255.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1255.json" new file mode 100644 index 0000000000000000000000000000000000000000..755b73e6405bd4c2de933338745befabe8fa2afe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1255.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 50, + 54 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1256.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1256.json" new file mode 100644 index 0000000000000000000000000000000000000000..3848234abbf44a94780e04d5b4c948ded145c22f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1256.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 28, + 91 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1257.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1257.json" new file mode 100644 index 0000000000000000000000000000000000000000..485275596754ed1d8ed3326a82c0479069346398 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1257.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 66, + 66 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1258.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1258.json" new file mode 100644 index 0000000000000000000000000000000000000000..c3ba7e828a79a13a56323da62db41521dd9dd017 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1258.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 14, + 79 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1259.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1259.json" new file mode 100644 index 0000000000000000000000000000000000000000..52459d639762dea253dd2a2497eeb42a7b0bd781 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1259.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 22, + 26 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1260.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1260.json" new file mode 100644 index 0000000000000000000000000000000000000000..451da52d9dcf4a335403837cf8298581a9825984 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1260.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 45, + 28 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1261.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1261.json" new file mode 100644 index 0000000000000000000000000000000000000000..a07f740394f635f746d3c612ef5ef70048b17009 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1261.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 33, + 27 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1262.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1262.json" new file mode 100644 index 0000000000000000000000000000000000000000..250b543a0f022c2b8359781c7c9b1a75a0c3ce99 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1262.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 63, + 45 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1263.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1263.json" new file mode 100644 index 0000000000000000000000000000000000000000..81f5aa33ade3292a89a4fb9cc83cf5c1e01e58e2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1263.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 17, + 33 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1264.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1264.json" new file mode 100644 index 0000000000000000000000000000000000000000..68e557708e720c5915e088f1a5a250dca889f70f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1264.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 19, + 12 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1265.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1265.json" new file mode 100644 index 0000000000000000000000000000000000000000..bf5b38bb2e273220d870f0e54e756379dfefe2c4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1265.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 0, + 12 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1266.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1266.json" new file mode 100644 index 0000000000000000000000000000000000000000..d3187bc3bbb0a96883d11ecf7731ea805eb9a0da --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1266.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 54, + 46 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1267.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1267.json" new file mode 100644 index 0000000000000000000000000000000000000000..f03f26bcfac35c59b5b39054921806fdb9b7fbcf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1267.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 26, + 45 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1268.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1268.json" new file mode 100644 index 0000000000000000000000000000000000000000..97c09354f6758461bf256e58d58a6dd640f6bd18 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1268.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 98, + 41 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1269.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1269.json" new file mode 100644 index 0000000000000000000000000000000000000000..c1ca58f6f43416ea26d43bfb04e75de9e5a2e54c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1269.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 18, + 69 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1270.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1270.json" new file mode 100644 index 0000000000000000000000000000000000000000..220cfd7a1ed8232a55b75f1887c3c8bc427786af --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1270.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 60, + 40 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1271.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1271.json" new file mode 100644 index 0000000000000000000000000000000000000000..128bc9c3ef40b4ce639edd6837a4c376cbc0351c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1271.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 59, + 37 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1272.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1272.json" new file mode 100644 index 0000000000000000000000000000000000000000..8dbb768941041739b28d868c687ce528e37776ea --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1272.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 48, + 32 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1273.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1273.json" new file mode 100644 index 0000000000000000000000000000000000000000..f3b6e93f62895e1ce5983e2a04b3c08acc1c7895 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1273.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 36, + 36 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1274.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1274.json" new file mode 100644 index 0000000000000000000000000000000000000000..ef6c04f5caedb84aa480d239e00a999b114c799a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1274.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 96, + 9 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1275.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1275.json" new file mode 100644 index 0000000000000000000000000000000000000000..dd502cf04d3a3f54e6cfd0d842b109ad0648d40b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1275.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 14, + 60 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1276.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1276.json" new file mode 100644 index 0000000000000000000000000000000000000000..8a6d3ad7f05220cf61fea43571a71c289ffd30a0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1276.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 27, + 48 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1277.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1277.json" new file mode 100644 index 0000000000000000000000000000000000000000..3d43bc62964341717916434f83eafa38941c7891 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1277.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 32, + 14 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1278.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1278.json" new file mode 100644 index 0000000000000000000000000000000000000000..e7fe06089b5e27d718cda23c553b6aeb564d1968 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1278.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 95, + 93 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1279.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1279.json" new file mode 100644 index 0000000000000000000000000000000000000000..d28cbf8f189db521365a378a05d76a569d285737 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1279.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 95, + 46 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1280.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1280.json" new file mode 100644 index 0000000000000000000000000000000000000000..6fde5631a88545395d3d3589f565cb045250ad7d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1280.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 71, + 89 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1281.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1281.json" new file mode 100644 index 0000000000000000000000000000000000000000..9fdaccc0cb691f6c33e542caf0b56d9e1972b126 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1281.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 38, + 92 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1282.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1282.json" new file mode 100644 index 0000000000000000000000000000000000000000..6158502c3719e9faca8bd801b721bf7ea19970c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1282.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 66, + 15 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1283.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1283.json" new file mode 100644 index 0000000000000000000000000000000000000000..4bf78147e2123d3e3bb2e2a6339198d34d89b32d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1283.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 31, + 8 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1284.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1284.json" new file mode 100644 index 0000000000000000000000000000000000000000..0c5b1454fe8704aed0fc020eaeaa45d91b5724d0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1284.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 44, + 51 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1285.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1285.json" new file mode 100644 index 0000000000000000000000000000000000000000..45bae854893f2acd08f7f8c61ea8f77afd2b51d2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1285.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 23, + 94 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1286.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1286.json" new file mode 100644 index 0000000000000000000000000000000000000000..6b4364b6520be59862d327e7abcce51460b4fafe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1286.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 76, + 36 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1287.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1287.json" new file mode 100644 index 0000000000000000000000000000000000000000..78f888bfaa6b15e7e1def1cdcb704c26ca75e729 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1287.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 51, + 22 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1288.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1288.json" new file mode 100644 index 0000000000000000000000000000000000000000..1a16a686a2bae66356671d1e430bcf30d2f6995e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1288.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 19, + 94 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1289.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1289.json" new file mode 100644 index 0000000000000000000000000000000000000000..c933b9bfe110e77626401ecb893a6028291661a8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1289.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 67, + 78 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1290.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1290.json" new file mode 100644 index 0000000000000000000000000000000000000000..56a17a02660021dfd55a80f1ab5e823f4cd592ec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1290.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 53, + 91 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1291.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1291.json" new file mode 100644 index 0000000000000000000000000000000000000000..eb2f8ffb8736d9ad6bc1e14ae842a245ab7cd8b7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1291.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 81, + 46 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1292.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1292.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac6df84bd9cb8ed06205c32848210175509b764f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1292.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 26, + 47 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1293.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1293.json" new file mode 100644 index 0000000000000000000000000000000000000000..0405164f8a57d364595eff86832a8fb48af5f1c5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1293.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 3, + 50 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1294.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1294.json" new file mode 100644 index 0000000000000000000000000000000000000000..861b28361f3af9f1fa45eb58e7413614cdfea764 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1294.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 73, + 3 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1295.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1295.json" new file mode 100644 index 0000000000000000000000000000000000000000..eb883edd01618862dd63e36cf946be2f4ad7dc7f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1295.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 20, + 12 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1296.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1296.json" new file mode 100644 index 0000000000000000000000000000000000000000..a1ef057f195a3e3cc33adc34aade3888be181b39 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1296.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 41, + 42 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1297.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1297.json" new file mode 100644 index 0000000000000000000000000000000000000000..f2685962cf251a27574977a1267245dfd1fa2038 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1297.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 90, + 24 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1298.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1298.json" new file mode 100644 index 0000000000000000000000000000000000000000..a9399fe15e8b47d3221c2e356e89d3baab0be6b5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1298.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 72, + 40 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1299.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1299.json" new file mode 100644 index 0000000000000000000000000000000000000000..eaedca250e483c1d5690b57703dfa3c7295f1efe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1299.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 98, + 30 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1300.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1300.json" new file mode 100644 index 0000000000000000000000000000000000000000..ebadbad7a307da7876095679c69bbed0ebb66d51 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1300.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 84, + 7 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1301.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1301.json" new file mode 100644 index 0000000000000000000000000000000000000000..9243e4593d6f078b34661878b584372f75bde650 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1301.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 42, + 35 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1302.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1302.json" new file mode 100644 index 0000000000000000000000000000000000000000..d28be2bed5fa83cfeca00c2672ef9db7c8be3ded --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1302.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 51, + 23 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1303.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1303.json" new file mode 100644 index 0000000000000000000000000000000000000000..9fb44c0cb5fd0e7d30e454bdf0e53815a66b8d46 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1303.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 48, + 64 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1304.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1304.json" new file mode 100644 index 0000000000000000000000000000000000000000..819eca1b1f7b85e7331e56de3b0851f61527ab39 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1304.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 35, + 73 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1305.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1305.json" new file mode 100644 index 0000000000000000000000000000000000000000..01b7bac820de90ad3d5dcaea269dfef857624784 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1305.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 33, + 86 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1306.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1306.json" new file mode 100644 index 0000000000000000000000000000000000000000..575132c69b10778053eca20e7cc48ecb097edd1d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1306.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 93, + 42 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1307.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1307.json" new file mode 100644 index 0000000000000000000000000000000000000000..659e690c4a6ca66c87bfc7ad938e18eb07dc272a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1307.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 66, + 62 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1308.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1308.json" new file mode 100644 index 0000000000000000000000000000000000000000..d80cd2adc4a6f91b312012b2ea076bb355562792 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1308.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 34, + 32 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1309.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1309.json" new file mode 100644 index 0000000000000000000000000000000000000000..b0ec3662b1d868103d82af32b576aea562f84fa0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1309.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 7, + 17 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1310.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1310.json" new file mode 100644 index 0000000000000000000000000000000000000000..541f5c30b07e6557693883bea99c1be740a0f92f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1310.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 52, + 85 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1311.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1311.json" new file mode 100644 index 0000000000000000000000000000000000000000..acac4952e1259796a36e52ba1ed1adfadee4e005 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1311.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 5, + 0 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1312.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1312.json" new file mode 100644 index 0000000000000000000000000000000000000000..4c9bfc9fd5eed178ce0cc259e455e152a2addac9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1312.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 23, + 23 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1313.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1313.json" new file mode 100644 index 0000000000000000000000000000000000000000..640f7d95c753431676a070bb30731a46c20f91c4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1313.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 63, + 59 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1314.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1314.json" new file mode 100644 index 0000000000000000000000000000000000000000..de1f6565f7379d266a40863813d9f27a69dc7b3e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1314.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 92, + 73 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1315.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1315.json" new file mode 100644 index 0000000000000000000000000000000000000000..9b889ec513865bdc307210a45bae1dbcb602c1c1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1315.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 58, + 37 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1316.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1316.json" new file mode 100644 index 0000000000000000000000000000000000000000..22c3429e5adf8ce1ff55789d5c9b8baae802d14d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1316.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 69, + 86 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1317.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1317.json" new file mode 100644 index 0000000000000000000000000000000000000000..842b54e7f59c21854efacccee89f44ec05cfc363 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1317.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 22, + 31 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1318.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1318.json" new file mode 100644 index 0000000000000000000000000000000000000000..2c8f621a1c98033e431143c5194c114d62ca2a47 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1318.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 9, + 9 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1319.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1319.json" new file mode 100644 index 0000000000000000000000000000000000000000..ec985e65e88369af2aad2b98bbe8959c6c77bf3c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1319.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 49, + 62 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1320.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1320.json" new file mode 100644 index 0000000000000000000000000000000000000000..e6c916255ec20128916471a211adef38d9fd6c4b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1320.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 22, + 84 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1321.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1321.json" new file mode 100644 index 0000000000000000000000000000000000000000..5d211847ac305bcf89dd447fc86548210ad4a69b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1321.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 82, + 66 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1322.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1322.json" new file mode 100644 index 0000000000000000000000000000000000000000..4b24cfa17ec2f1d2fe149749fad75ee11ab3c1e4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1322.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.2", + "shadow": "3.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 28, + 16 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1323.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1323.json" new file mode 100644 index 0000000000000000000000000000000000000000..0df968e103ebc0ea4747680d0f4280a1d5f4441b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1323.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 95, + 77 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1324.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1324.json" new file mode 100644 index 0000000000000000000000000000000000000000..4aeb56d032511f1aa4c67c566e15c106a61d8691 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1324.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 90, + 10 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1325.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1325.json" new file mode 100644 index 0000000000000000000000000000000000000000..4ec6e2711fd1e5e3f98496447b9838b25afe10b5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1325.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 61, + 12 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1326.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1326.json" new file mode 100644 index 0000000000000000000000000000000000000000..313202ac4016d205783e343d79711db357cb4fca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1326.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 98, + 3 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1327.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1327.json" new file mode 100644 index 0000000000000000000000000000000000000000..c039e9c6e04a155d9ccd079dd6ddde8cf459b62a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1327.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 68, + 20 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1328.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1328.json" new file mode 100644 index 0000000000000000000000000000000000000000..b63d5a945a865c662399bf65417a169ae614bae6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1328.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 47, + 92 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1329.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1329.json" new file mode 100644 index 0000000000000000000000000000000000000000..e43eb3739114ff63d57973cce6cf438a0dcd6677 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1329.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 36, + 89 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1330.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1330.json" new file mode 100644 index 0000000000000000000000000000000000000000..90f4e7234424f93254221c52434bfc7e1a55321a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1330.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 86, + 72 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1331.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1331.json" new file mode 100644 index 0000000000000000000000000000000000000000..051fd03e2e6b1ceec82a08186b97270125c30953 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1331.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 67, + 89 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1332.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1332.json" new file mode 100644 index 0000000000000000000000000000000000000000..0cd232f899e17f2833052dfd50c150c355a5777e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1332.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 85, + 84 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1333.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1333.json" new file mode 100644 index 0000000000000000000000000000000000000000..fd39026d26c6fb6d5576f13a8bc8e2cc18e54328 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1333.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 4, + 12 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1334.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1334.json" new file mode 100644 index 0000000000000000000000000000000000000000..b300754bac6a826f71050892b713259a970ffb8a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1334.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 46, + 20 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1335.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1335.json" new file mode 100644 index 0000000000000000000000000000000000000000..b0cfcfe0e1588fe74f8cb0e2e1cbc6cf91189a6a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1335.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 66, + 42 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1336.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1336.json" new file mode 100644 index 0000000000000000000000000000000000000000..5397bca9e00ddecf167f88bef2a49d588031a74f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1336.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 40, + 26 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1337.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1337.json" new file mode 100644 index 0000000000000000000000000000000000000000..c0c9aa6d1c37f6942feeaaf03f38c3de9d004483 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1337.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 54, + 52 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1338.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1338.json" new file mode 100644 index 0000000000000000000000000000000000000000..b8f6db6ec53d797b2c04e98dccc6f190de611c3d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1338.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 85, + 35 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1339.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1339.json" new file mode 100644 index 0000000000000000000000000000000000000000..2bad2e80328ec2b830b76bb50d70f64f2707b857 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1339.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 100, + 98 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1340.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1340.json" new file mode 100644 index 0000000000000000000000000000000000000000..8f835c4f87c20d29269cfc0b993ad254bd8f4d54 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1340.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 46, + 29 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1341.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1341.json" new file mode 100644 index 0000000000000000000000000000000000000000..ba82a12732fc83222cce4158598b995ed0549c75 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1341.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 21, + 18 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1342.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1342.json" new file mode 100644 index 0000000000000000000000000000000000000000..f3a3c9496222faf0cf73c372989a33862d4fe76a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1342.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 99, + 37 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1343.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1343.json" new file mode 100644 index 0000000000000000000000000000000000000000..a4c3f3fca2e32976c044ef25124a0c8481b2465b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1343.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 19, + 18 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1344.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1344.json" new file mode 100644 index 0000000000000000000000000000000000000000..700c8f2351e8fe79c2759ec03f2c05ab13b9099d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1344.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 90, + 83 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1345.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1345.json" new file mode 100644 index 0000000000000000000000000000000000000000..0437edcf8138a64dee2421fc3fbdbb970b645bd9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1345.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 57, + 12 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1346.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1346.json" new file mode 100644 index 0000000000000000000000000000000000000000..957a2e841befe39b4602c64f7b18b08d73dcacef --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1346.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 99, + 73 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1347.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1347.json" new file mode 100644 index 0000000000000000000000000000000000000000..5e71c25a7eb977bafa50ccc1a2f72e8d47f40cec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1347.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 43, + 54 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1348.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1348.json" new file mode 100644 index 0000000000000000000000000000000000000000..7364321d8cec97d4d02d40266ec0591f703f37dd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1348.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 96, + 22 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1349.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1349.json" new file mode 100644 index 0000000000000000000000000000000000000000..bc6adccd033776f069b64955aa96bd23bb224dee --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1349.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "3.0", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 61, + 73 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1350.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1350.json" new file mode 100644 index 0000000000000000000000000000000000000000..1836d0419055ede972aa0d3b3be07ac86ee62dad --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1350.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 92, + 37 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1351.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1351.json" new file mode 100644 index 0000000000000000000000000000000000000000..f59912b10b0f5a17178862915adf90b588c2a7aa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1351.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 9, + 22 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1352.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1352.json" new file mode 100644 index 0000000000000000000000000000000000000000..c5928404fa252635b951b2ff25cea5d737132308 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1352.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 39, + 21 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1353.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1353.json" new file mode 100644 index 0000000000000000000000000000000000000000..957f2e938cc5a761fbb6438f2df8fbc990e0769c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1353.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 7, + 18 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1354.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1354.json" new file mode 100644 index 0000000000000000000000000000000000000000..1757701907e04afd3ae602311e10641c39625b04 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1354.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 30, + 8 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1355.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1355.json" new file mode 100644 index 0000000000000000000000000000000000000000..02db30f176b109dfb30dc381e5c60d7f094a1e5c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1355.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 82, + 86 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1356.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1356.json" new file mode 100644 index 0000000000000000000000000000000000000000..ca413a9ca6c01e9eab8cb8f4da1d866caaf9a3f8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1356.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 0, + 54 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1357.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1357.json" new file mode 100644 index 0000000000000000000000000000000000000000..143f2693d9d893c160c44536d4da44ac30567134 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1357.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 38, + 17 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1358.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1358.json" new file mode 100644 index 0000000000000000000000000000000000000000..1ecffdaa89e9ef769556c820512ed814177f5025 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1358.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 39, + 3 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1359.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1359.json" new file mode 100644 index 0000000000000000000000000000000000000000..aaf9e018625f4f49b24fb04ae04b5e16962baed9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1359.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 4, + 47 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1360.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1360.json" new file mode 100644 index 0000000000000000000000000000000000000000..dd787e0f31da99bbc543ba291caa2153f90d5c00 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1360.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 3, + 62 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1361.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1361.json" new file mode 100644 index 0000000000000000000000000000000000000000..1456d8f34b51bdd1c85b3a1e9730dde241c02816 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1361.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 21, + 37 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1362.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1362.json" new file mode 100644 index 0000000000000000000000000000000000000000..cfe4a89b339640fdb8b8f86f3e24aad90f6a0cfe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1362.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 18, + 76 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1363.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1363.json" new file mode 100644 index 0000000000000000000000000000000000000000..36869dc5063ce8424ed86c434cba3e3b6d1209e7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1363.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 28, + 100 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1364.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1364.json" new file mode 100644 index 0000000000000000000000000000000000000000..eb1d2c2a2972d86d6c78774cfd3adaa472574796 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1364.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 88, + 100 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1365.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1365.json" new file mode 100644 index 0000000000000000000000000000000000000000..950708c8b838d90b5a2daf723856ec6000266a53 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1365.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 44, + 60 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1366.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1366.json" new file mode 100644 index 0000000000000000000000000000000000000000..3d022298728a4c21199bb8bc067cff5bc737b957 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1366.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 65, + 4 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1367.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1367.json" new file mode 100644 index 0000000000000000000000000000000000000000..6bbe8acca1ea9a5de31e4c004b51889a5717e965 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1367.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.0", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 20, + 54 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1368.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1368.json" new file mode 100644 index 0000000000000000000000000000000000000000..1046d08a5eb7b528b591acd585058c0c4a318e71 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1368.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 72, + 25 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1369.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1369.json" new file mode 100644 index 0000000000000000000000000000000000000000..a9650af3cf5b32dad8859b7373e4b8d03e1ff024 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1369.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 14, + 45 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1370.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1370.json" new file mode 100644 index 0000000000000000000000000000000000000000..92a2ee06f9658cf7e8f423a04ca6b246ce32f45c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1370.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 11, + 66 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1371.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1371.json" new file mode 100644 index 0000000000000000000000000000000000000000..eb9bd8bd2673e51b9981f6cc339b5ba77bc86c94 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1371.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 1, + 98 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1372.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1372.json" new file mode 100644 index 0000000000000000000000000000000000000000..4c6d762e7df8abe6e4ef12f33eee29771b858c87 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1372.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 23, + 15 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1373.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1373.json" new file mode 100644 index 0000000000000000000000000000000000000000..20c3a72d2cd9758bad536bc0fd4494af1fa6075c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1373.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 30, + 12 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1374.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1374.json" new file mode 100644 index 0000000000000000000000000000000000000000..604215385c5a0b95060dc2ad88f42191e77fc4fb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1374.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 32, + 88 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1375.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1375.json" new file mode 100644 index 0000000000000000000000000000000000000000..01e780a4930b054638e14e9b7c55f9bc3125ceca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1375.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 50, + 42 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1376.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1376.json" new file mode 100644 index 0000000000000000000000000000000000000000..5a68bdec7b60b37aa5642c6b6c6a50426d4080bc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1376.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 6, + 55 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1377.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1377.json" new file mode 100644 index 0000000000000000000000000000000000000000..4174a34cb5ca5ae469db04d5bf01a773eeb6ac2c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1377.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 35, + 4 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1378.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1378.json" new file mode 100644 index 0000000000000000000000000000000000000000..caa2f9db4658e5eb3bff08aa0952c34f731034dd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1378.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 42, + 97 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1379.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1379.json" new file mode 100644 index 0000000000000000000000000000000000000000..9dad9dea630fad6df4bad9c94fba672ccc4ec6a5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1379.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 65, + 26 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1380.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1380.json" new file mode 100644 index 0000000000000000000000000000000000000000..395c119856711a9e8ff990069980979890549fdd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1380.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 28, + 81 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1381.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1381.json" new file mode 100644 index 0000000000000000000000000000000000000000..4ddd7c14d2b0d000203635857b9864fd7c2ff4cc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1381.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 69, + 14 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1382.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1382.json" new file mode 100644 index 0000000000000000000000000000000000000000..f3bd2e37ef9d685c87de8cee888e39f9d5dd230f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1382.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 90, + 38 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1383.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1383.json" new file mode 100644 index 0000000000000000000000000000000000000000..05e8a5b6330d6e7f9978a79c18632808f73f41a3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1383.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 36, + 16 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1384.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1384.json" new file mode 100644 index 0000000000000000000000000000000000000000..e20eb773b6e9d44c76fc6880c337ba05d3d1d901 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1384.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 75, + 16 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1385.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1385.json" new file mode 100644 index 0000000000000000000000000000000000000000..385d1d5dd80e41b9c5cfd0af2aa4f1da16debe21 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1385.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 97, + 54 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1386.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1386.json" new file mode 100644 index 0000000000000000000000000000000000000000..63b4b600c582e83bfadb04bc1b9966b4343a93b5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1386.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 67, + 88 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1387.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1387.json" new file mode 100644 index 0000000000000000000000000000000000000000..5b13102c0746f55736203f8956195e6f79f47dc0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1387.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 31, + 86 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1388.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1388.json" new file mode 100644 index 0000000000000000000000000000000000000000..1c2fe7bb2888efca6ab3ac049ce1b587b6bc1a57 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1388.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 80, + 22 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1389.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1389.json" new file mode 100644 index 0000000000000000000000000000000000000000..898a11aa3244b823f440b684fc850320e18e904f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1389.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 8, + 22 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1390.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1390.json" new file mode 100644 index 0000000000000000000000000000000000000000..2add59333ee5c8dbd48df905b0b9800b90d4119c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1390.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 82, + 34 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1391.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1391.json" new file mode 100644 index 0000000000000000000000000000000000000000..0dc622b3ffd7d6939036865e72dde2a77ac458e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1391.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 55, + 8 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1392.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1392.json" new file mode 100644 index 0000000000000000000000000000000000000000..93f93c2548c0186669363118aef8c67326982054 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1392.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 14, + 26 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1393.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1393.json" new file mode 100644 index 0000000000000000000000000000000000000000..27ef88e25db8fdb1830856d71791a843579d5e7a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1393.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 54, + 53 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1394.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1394.json" new file mode 100644 index 0000000000000000000000000000000000000000..0a800dc60da7d3288cdb10e666440549c1cb78bf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1394.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 25, + 67 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1395.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1395.json" new file mode 100644 index 0000000000000000000000000000000000000000..8ec928adc4c1d30af59ebf8779e194d9d932226f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1395.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 90, + 5 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1396.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1396.json" new file mode 100644 index 0000000000000000000000000000000000000000..e58fdabd8ab6cdf3d9e4f2a3d22291c01303e3a3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1396.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 69, + 56 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1397.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1397.json" new file mode 100644 index 0000000000000000000000000000000000000000..14b173123e2362c5e6d5b732aa863267fafbfd97 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1397.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 74, + 44 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1398.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1398.json" new file mode 100644 index 0000000000000000000000000000000000000000..37ccad49b7977a0c0cae03bac807bea5cff0c4d9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1398.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 12, + 11 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1399.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1399.json" new file mode 100644 index 0000000000000000000000000000000000000000..af79989bd0ebdc30241bc43b72b051bd42d86b16 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1399.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 98, + 44 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1400.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1400.json" new file mode 100644 index 0000000000000000000000000000000000000000..1d05809d27a4b513ced6ed6990a2b769fccde396 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1400.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 22, + 45 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1401.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1401.json" new file mode 100644 index 0000000000000000000000000000000000000000..a3309d28d91305e9b871329f75d9bea8e0d6aaba --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1401.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 94, + 89 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1402.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1402.json" new file mode 100644 index 0000000000000000000000000000000000000000..e0d2508de5de97cccd8f1362228697704ee9ca4f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1402.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 6, + 24 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1403.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1403.json" new file mode 100644 index 0000000000000000000000000000000000000000..ba628946601787a5a0629a3f92912b4e0859c28f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1403.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 5, + 72 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1404.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1404.json" new file mode 100644 index 0000000000000000000000000000000000000000..7c761b5fc4430b243556d2cc7a5f42b354184f77 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1404.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 100, + 24 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1405.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1405.json" new file mode 100644 index 0000000000000000000000000000000000000000..1eeab3682f8afb27f30164016cce60fcbb3bf60c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1405.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 95, + 49 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1406.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1406.json" new file mode 100644 index 0000000000000000000000000000000000000000..d4085711abbb171afb5f5cab47e48354cb6efeda --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1406.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 67, + 95 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1407.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1407.json" new file mode 100644 index 0000000000000000000000000000000000000000..4d2d62503daf85cf91e0c017225eb59ffe06f489 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1407.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 79, + 85 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1408.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1408.json" new file mode 100644 index 0000000000000000000000000000000000000000..abbf8928732706e6f819f9de81ce2c68be235b12 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1408.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 4, + 86 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1409.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1409.json" new file mode 100644 index 0000000000000000000000000000000000000000..07e6029bb27d2c68ff35d6582a111d62600f321f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1409.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 60, + 4 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1410.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1410.json" new file mode 100644 index 0000000000000000000000000000000000000000..4bc018778c686dcee9a7796d0038fdc256caa85b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1410.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 57, + 19 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1411.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1411.json" new file mode 100644 index 0000000000000000000000000000000000000000..d395934933bec62952b9d81dbc72680b1a387f54 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1411.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 65, + 8 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1412.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1412.json" new file mode 100644 index 0000000000000000000000000000000000000000..ea4009a1edf5e6065d6131fa15acf42c7a7854dd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1412.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 22, + 62 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1413.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1413.json" new file mode 100644 index 0000000000000000000000000000000000000000..7d99d01d1bc5a4ee894ea5db8b2f51bcd8cc7f52 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1413.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 87, + 20 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1414.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1414.json" new file mode 100644 index 0000000000000000000000000000000000000000..86613db160e1b0cc5cdad9e19e7867c64f2ca9e2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1414.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 82, + 68 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1415.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1415.json" new file mode 100644 index 0000000000000000000000000000000000000000..72da76e3fe480ae13986e28ebd593b55d24defd7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1415.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 30, + 8 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1416.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1416.json" new file mode 100644 index 0000000000000000000000000000000000000000..681b35682d7f6880c8ccb092283c7814fce867ef --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1416.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 37, + 83 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1417.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1417.json" new file mode 100644 index 0000000000000000000000000000000000000000..8ac5daf1e57292a838fefade1095ca1733e91de5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1417.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 54, + 5 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1418.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1418.json" new file mode 100644 index 0000000000000000000000000000000000000000..416476497b797b8945bad7b503781db133598112 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1418.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 89, + 64 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1419.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1419.json" new file mode 100644 index 0000000000000000000000000000000000000000..a00de043baa5188e74a51a39db0972f815417b85 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1419.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 79, + 45 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1420.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1420.json" new file mode 100644 index 0000000000000000000000000000000000000000..ceddc0855bbbf46fa7adb93adf636e6196d314bc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1420.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 34, + 91 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1421.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1421.json" new file mode 100644 index 0000000000000000000000000000000000000000..0b093f493839d5d9844187f1a48a4982a1161b8a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1421.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 95, + 66 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1422.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1422.json" new file mode 100644 index 0000000000000000000000000000000000000000..d10d1aa84b2aa2590bba9e4a32ce50777bd2efe0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1422.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 46, + 31 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1423.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1423.json" new file mode 100644 index 0000000000000000000000000000000000000000..d86ccb916cf0bb88a0554dc9d2455750d00e61ca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1423.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 63, + 33 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1424.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1424.json" new file mode 100644 index 0000000000000000000000000000000000000000..7c5d642c5e432bb59497484930bd9158450dfe4f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1424.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 20, + 3 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1425.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1425.json" new file mode 100644 index 0000000000000000000000000000000000000000..3a627de5bbbef79a3ac6d49b3d9856abe65c526a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1425.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 71, + 20 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1426.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1426.json" new file mode 100644 index 0000000000000000000000000000000000000000..6228724520cb4d9af625b4a61e973f03eb9f929b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1426.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 73, + 93 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1427.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1427.json" new file mode 100644 index 0000000000000000000000000000000000000000..3922486896b7ff19cdc2bc3cd5638a0a8058d2e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1427.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 82, + 60 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1428.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1428.json" new file mode 100644 index 0000000000000000000000000000000000000000..383489dc8dfc5d2d90edf4afe70e20c75a97503d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1428.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 34, + 58 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1429.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1429.json" new file mode 100644 index 0000000000000000000000000000000000000000..f229ec53dabe09e8a112fe0e6e8396e939fb37fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1429.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 84, + 2 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1430.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1430.json" new file mode 100644 index 0000000000000000000000000000000000000000..6170d1acc1119e903c9dfc3cbd6218670824ee5a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1430.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 65, + 65 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1431.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1431.json" new file mode 100644 index 0000000000000000000000000000000000000000..30a90df67ef230fb50871e911e727bd6c7dcc44f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1431.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 23, + 26 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1432.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1432.json" new file mode 100644 index 0000000000000000000000000000000000000000..3e216a83217c89581c344818f1b37292b479749f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1432.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 51, + 54 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1433.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1433.json" new file mode 100644 index 0000000000000000000000000000000000000000..7b9fbae678f3e04e80c830d4e7baf780811601d4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1433.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 1, + 25 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1434.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1434.json" new file mode 100644 index 0000000000000000000000000000000000000000..3ff9c094e3113884ffe262bb35d73ba0309c0787 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1434.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 42, + 47 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1435.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1435.json" new file mode 100644 index 0000000000000000000000000000000000000000..dd7e19252e76476077e7d198a9ab2874de77829e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1435.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 23, + 55 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1436.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1436.json" new file mode 100644 index 0000000000000000000000000000000000000000..d29576de47ba7833e34ac98ef2d60afce5f34137 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1436.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 7, + 15 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1437.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1437.json" new file mode 100644 index 0000000000000000000000000000000000000000..c0fee249b3cd3da4b4e88cf784e93846b56eb62a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1437.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 11, + 38 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1438.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1438.json" new file mode 100644 index 0000000000000000000000000000000000000000..b59cbea2df097243490d69d571d6c9dad7b19aa7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1438.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 47, + 61 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1439.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1439.json" new file mode 100644 index 0000000000000000000000000000000000000000..bc4757aa637c37a9109491c2a1a180e409f87bd5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1439.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 89, + 48 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1440.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1440.json" new file mode 100644 index 0000000000000000000000000000000000000000..c6e16620b05e4e83f34c93441002acd2a1a731af --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1440.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 21, + 9 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1441.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1441.json" new file mode 100644 index 0000000000000000000000000000000000000000..05765bfe4e416672d396b626d23247ef2ef54d9c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1441.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 70, + 19 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1442.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1442.json" new file mode 100644 index 0000000000000000000000000000000000000000..596ece0ec0cd2edd506b6f13c8ab55b0c6d79445 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1442.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 97, + 44 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1443.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1443.json" new file mode 100644 index 0000000000000000000000000000000000000000..7dd722892938e3c31b2a595dc4bea9515a0b28de --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1443.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 98, + 17 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1444.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1444.json" new file mode 100644 index 0000000000000000000000000000000000000000..cf567b91f69c16281e6cc62c74af5bc657f66bb7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1444.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 35, + 4 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1445.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1445.json" new file mode 100644 index 0000000000000000000000000000000000000000..5ce4601045bfcd7f2d1d61dfe283552619479549 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1445.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 17, + 43 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1446.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1446.json" new file mode 100644 index 0000000000000000000000000000000000000000..74031e84d30ba3c516532293377571fea4736921 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1446.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 94, + 18 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1447.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1447.json" new file mode 100644 index 0000000000000000000000000000000000000000..7b2662f4de2f8cccb62830055534ed91b8d49036 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1447.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 17, + 86 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1448.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1448.json" new file mode 100644 index 0000000000000000000000000000000000000000..0929d45e85f956f22722164883e545728f9243e7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1448.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 3, + 23 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1449.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1449.json" new file mode 100644 index 0000000000000000000000000000000000000000..297cdd714485d9b241fad44801a4f9f5e2572b46 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1449.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 36, + 9 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1450.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1450.json" new file mode 100644 index 0000000000000000000000000000000000000000..9de58fef59376e5b492e0f239d10f9abf5947552 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1450.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 66, + 53 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1451.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1451.json" new file mode 100644 index 0000000000000000000000000000000000000000..f86f6b232d45f7571ef24707bb0a41c0b9788c0f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1451.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 14, + 51 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1452.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1452.json" new file mode 100644 index 0000000000000000000000000000000000000000..25122d15fef447055e0c92c2713e8391ecf4ad53 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1452.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 57, + 70 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1453.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1453.json" new file mode 100644 index 0000000000000000000000000000000000000000..8252cbf67d1c7afc3754bf668e94a3d9f7d006fa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1453.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 20, + 73 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1454.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1454.json" new file mode 100644 index 0000000000000000000000000000000000000000..f1067b0f9a363b988b3194034977a165af01c4db --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1454.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 65, + 41 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1455.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1455.json" new file mode 100644 index 0000000000000000000000000000000000000000..c5a406607f880ae9094bacddc96f3dfbc7ea2df0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1455.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 98, + 2 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1456.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1456.json" new file mode 100644 index 0000000000000000000000000000000000000000..01d9f98e60d7f0da784285e55bd007b1727e554f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1456.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 97, + 67 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1457.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1457.json" new file mode 100644 index 0000000000000000000000000000000000000000..b30b7410f056429175dc56d576aa5fdd3f2384f4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1457.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 92, + 43 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1458.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1458.json" new file mode 100644 index 0000000000000000000000000000000000000000..4a3382d87076b3e0eb58d638e22969260b09f341 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1458.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 72, + 39 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1459.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1459.json" new file mode 100644 index 0000000000000000000000000000000000000000..f0678f4ff9527b44702ba977b4c4220f746dc6b5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1459.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 81, + 75 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1460.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1460.json" new file mode 100644 index 0000000000000000000000000000000000000000..968020b3d3cb0fd6c873522fec49210ebdfaa969 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1460.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 45, + 70 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1461.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1461.json" new file mode 100644 index 0000000000000000000000000000000000000000..ede000dbe0ecdd5d5621a913c16ccd6f7ac73cda --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1461.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 64, + 59 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1462.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1462.json" new file mode 100644 index 0000000000000000000000000000000000000000..96d31ed30728a8c336cf6ceb1bad07c41bfcfcaf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1462.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 22, + 34 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1463.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1463.json" new file mode 100644 index 0000000000000000000000000000000000000000..1be641679380659a62143b7638842cbbedca77bb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1463.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 4, + 18 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1464.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1464.json" new file mode 100644 index 0000000000000000000000000000000000000000..147c453177a53c6df78248aed849ec103798f3a9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1464.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 6, + 65 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1465.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1465.json" new file mode 100644 index 0000000000000000000000000000000000000000..fbe4e203e437100fad4cbab2990a35669a5585c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1465.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 51, + 48 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1466.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1466.json" new file mode 100644 index 0000000000000000000000000000000000000000..661137679e0c9b3b0d6d48f71a0f5856bbf937d8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1466.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 75, + 20 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1467.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1467.json" new file mode 100644 index 0000000000000000000000000000000000000000..705227d87c1ee1033ba3964d13f037a7c0ca59a1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1467.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 41, + 18 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1468.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1468.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f326e9791e9e45cb117c7ec969f34cd314a8c90 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1468.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 59, + 36 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1469.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1469.json" new file mode 100644 index 0000000000000000000000000000000000000000..ca9e12f10e0c305ad2358ddc44cb04e1d0ae02cd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1469.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 6, + 94 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1470.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1470.json" new file mode 100644 index 0000000000000000000000000000000000000000..f73ee16a7bd11cce3cbe1c77bc91f9268bc036af --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1470.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 44, + 83 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1471.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1471.json" new file mode 100644 index 0000000000000000000000000000000000000000..1098fd53e9f4d2d736f8ba98ebb594bece8d5f5b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1471.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 74, + 21 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1472.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1472.json" new file mode 100644 index 0000000000000000000000000000000000000000..109aa3937c50a7a73c127d10a3454b8255238d0d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1472.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 1, + 46 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1473.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1473.json" new file mode 100644 index 0000000000000000000000000000000000000000..020eac541a82502a2256b9be82259fe02305b263 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1473.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 85, + 1 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1474.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1474.json" new file mode 100644 index 0000000000000000000000000000000000000000..2556b3e5af3f57f84a6e74fca5551a2da14d3e03 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1474.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 24, + 90 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1475.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1475.json" new file mode 100644 index 0000000000000000000000000000000000000000..a63bba314f9d7fdc936111331f102636f9c34012 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1475.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 90, + 18 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1476.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1476.json" new file mode 100644 index 0000000000000000000000000000000000000000..c6859afc833f33479780a672ba3db7179701e5f8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1476.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 79, + 78 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1477.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1477.json" new file mode 100644 index 0000000000000000000000000000000000000000..99bf8684c3b57a28e039db70d46fad860d68f4ca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1477.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 61, + 99 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1478.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1478.json" new file mode 100644 index 0000000000000000000000000000000000000000..b1e71859580db6460e248f248ba095beae15be43 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1478.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 87, + 60 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1479.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1479.json" new file mode 100644 index 0000000000000000000000000000000000000000..0c692c3a06fc03965f4521e13c1955c0ad5ebfc6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1479.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 45, + 7 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1480.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1480.json" new file mode 100644 index 0000000000000000000000000000000000000000..4392a6536734f7880ef9da653706756add6b53fa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1480.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 55, + 10 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1481.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1481.json" new file mode 100644 index 0000000000000000000000000000000000000000..320da968bddcce0ce28e9e3c88b6a0d459efb5c4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1481.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 49, + 81 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1482.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1482.json" new file mode 100644 index 0000000000000000000000000000000000000000..df440168edf2d518729d12af2315428a1cf1a387 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1482.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 85, + 86 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1483.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1483.json" new file mode 100644 index 0000000000000000000000000000000000000000..ecbba83d6fc7ded37b4679b97cfcf304e435277f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1483.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 86, + 5 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1484.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1484.json" new file mode 100644 index 0000000000000000000000000000000000000000..74cd77313ba005f37292d502d11fc2ab6cefa905 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1484.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 100, + 60 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1485.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1485.json" new file mode 100644 index 0000000000000000000000000000000000000000..f4d1cfd54c36f9b093a08cde27a230da12b11c3f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1485.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 28, + 58 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1486.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1486.json" new file mode 100644 index 0000000000000000000000000000000000000000..d7a1cecc47f242a0b874fd916b37cfff57da144f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1486.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 95, + 21 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1487.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1487.json" new file mode 100644 index 0000000000000000000000000000000000000000..d54bdba27079e2187fac6c97880034ddd9cc765d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1487.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 61, + 34 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1488.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1488.json" new file mode 100644 index 0000000000000000000000000000000000000000..cbc1a48c18a07841d7f019393e3b89037283dcac --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1488.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 67, + 82 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1489.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1489.json" new file mode 100644 index 0000000000000000000000000000000000000000..42c0776de854f80619aded514170c2f94cc36018 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1489.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 46, + 60 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1490.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1490.json" new file mode 100644 index 0000000000000000000000000000000000000000..87fa51165945679a226e91ae8d6af8ddfd78adf7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1490.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 45, + 21 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1491.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1491.json" new file mode 100644 index 0000000000000000000000000000000000000000..9331a0ab069953a17f3f7cab69e8db4a6015e43b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1491.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 7, + 55 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1492.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1492.json" new file mode 100644 index 0000000000000000000000000000000000000000..08bd11d11c8957b5c130cf9f9951c110a9ba6552 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1492.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 72, + 9 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1493.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1493.json" new file mode 100644 index 0000000000000000000000000000000000000000..b9a01653a18e55f8dc831f9935c8d08129607cc5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1493.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 94, + 68 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1494.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1494.json" new file mode 100644 index 0000000000000000000000000000000000000000..c524ccfa0e852ed5693df91f95e200b14406575b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1494.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 27, + 90 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1495.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1495.json" new file mode 100644 index 0000000000000000000000000000000000000000..12b3f3eee07060106fa30269987bfd295877025a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1495.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 70, + 8 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1496.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1496.json" new file mode 100644 index 0000000000000000000000000000000000000000..01bb2224584d3fd5b59d8ea4209d606e716a9018 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1496.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 36, + 32 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1497.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1497.json" new file mode 100644 index 0000000000000000000000000000000000000000..46d95ab24cd303283fe1cb305fe301eaf1f1f148 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1497.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 35, + 18 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1498.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1498.json" new file mode 100644 index 0000000000000000000000000000000000000000..ab85464fa0c1d192dcc3355281a8cdf69298c425 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1498.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 68, + 54 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1499.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1499.json" new file mode 100644 index 0000000000000000000000000000000000000000..ea4b7ad664990c55ec48c68c2e00e72c62f1aef9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1499.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 81, + 76 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1500.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1500.json" new file mode 100644 index 0000000000000000000000000000000000000000..7e59be26fa12763027ab60cdd4060bca2a0a236d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1500.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 65, + 63 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1501.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1501.json" new file mode 100644 index 0000000000000000000000000000000000000000..edcb05c5be18115af5e47590a2aad732c5f059bb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1501.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 63, + 59 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1502.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1502.json" new file mode 100644 index 0000000000000000000000000000000000000000..71ce208949541ed59d557a4bf11100f96fc60eb2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1502.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 26, + 47 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1503.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1503.json" new file mode 100644 index 0000000000000000000000000000000000000000..5c69b84fed02a387e391fe2bebbf8712fdfdb8fb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1503.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 56, + 64 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1504.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1504.json" new file mode 100644 index 0000000000000000000000000000000000000000..c253462b05939d6affc4a837325e33705d00a4b0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1504.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 97, + 83 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1505.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1505.json" new file mode 100644 index 0000000000000000000000000000000000000000..e3b44b0ac9e1a3d2de25046964dba2c0e1132b8a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1505.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 88, + 83 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1506.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1506.json" new file mode 100644 index 0000000000000000000000000000000000000000..58140d2e197a4659199aa99913e3c0632b272618 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1506.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 60, + 7 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1507.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1507.json" new file mode 100644 index 0000000000000000000000000000000000000000..38f00b5efc7a29231e652b7cdf9415d60e6adcf7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1507.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 62, + 96 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1508.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1508.json" new file mode 100644 index 0000000000000000000000000000000000000000..f73631cd9db98bf0d163f05cc22f49a32ab4f319 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1508.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 22, + 17 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1509.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1509.json" new file mode 100644 index 0000000000000000000000000000000000000000..349612688126c04675c6c3c3de13ac815d92b47c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1509.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 46, + 57 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1510.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1510.json" new file mode 100644 index 0000000000000000000000000000000000000000..6a4a05fde8f35972458c37fa009873823b09ea43 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1510.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 57, + 93 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1511.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1511.json" new file mode 100644 index 0000000000000000000000000000000000000000..c56401f70edbd13e7b42449b23479c2c1cd48695 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1511.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 100, + 54 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1512.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1512.json" new file mode 100644 index 0000000000000000000000000000000000000000..5c1553c93df9915e0d17be5eb7393101edbeff6d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1512.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 11, + 82 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1513.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1513.json" new file mode 100644 index 0000000000000000000000000000000000000000..08afd50b940e9fff3ad79c5d208d0ed0db3e10a5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1513.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 20, + 67 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1514.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1514.json" new file mode 100644 index 0000000000000000000000000000000000000000..6c4ecc294ba8bd91db5db355063f447fc7bf47c5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1514.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 29, + 51 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1515.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1515.json" new file mode 100644 index 0000000000000000000000000000000000000000..6894aaaa39dfc47ea86c1a929742cf274541af5a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1515.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 61, + 88 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1516.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1516.json" new file mode 100644 index 0000000000000000000000000000000000000000..e2a26e04db7b2192c4c723d47b18e8d612d76e45 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1516.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 99, + 92 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1517.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1517.json" new file mode 100644 index 0000000000000000000000000000000000000000..46bde843e40e2053287c2028fc4ccd099d36bc5a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1517.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 3, + 85 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1518.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1518.json" new file mode 100644 index 0000000000000000000000000000000000000000..302de0e0ee41f43dc4e93258d3754e72f1ee0ca5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1518.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 21, + 72 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1519.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1519.json" new file mode 100644 index 0000000000000000000000000000000000000000..092b69d576ee6fbabc96c542be23238dfa7086a1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1519.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 59, + 66 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1520.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1520.json" new file mode 100644 index 0000000000000000000000000000000000000000..47f20987f3a487fcbf2662e9cf7399db75683fd0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1520.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 69, + 79 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1521.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1521.json" new file mode 100644 index 0000000000000000000000000000000000000000..40ee7df6f1b13d652078da31006381e270201bc3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1521.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 50, + 70 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1522.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1522.json" new file mode 100644 index 0000000000000000000000000000000000000000..2e5135e14712b9c82d41d5d38f6b17025d92955a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1522.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 34, + 70 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1523.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1523.json" new file mode 100644 index 0000000000000000000000000000000000000000..dce9c559d37467fca70e61a2bc7cf17b91b474c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1523.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 73, + 91 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1524.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1524.json" new file mode 100644 index 0000000000000000000000000000000000000000..894cdca7803faadd7a9bc5654824e0ed80844128 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1524.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 71, + 8 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1525.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1525.json" new file mode 100644 index 0000000000000000000000000000000000000000..876a608c8eb04571891fc9f4c7144529a74ac1ae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1525.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 36, + 91 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1526.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1526.json" new file mode 100644 index 0000000000000000000000000000000000000000..4f48971b63ac3a26c657a036da1e8419fe1b1025 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1526.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 16, + 50 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1527.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1527.json" new file mode 100644 index 0000000000000000000000000000000000000000..966e69a91d121ae7a14b99db2515b879ad108ee7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1527.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 31, + 100 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1528.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1528.json" new file mode 100644 index 0000000000000000000000000000000000000000..9928f342b02884204b812c72e1c8f1f5dda04e0e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1528.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 58, + 37 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1529.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1529.json" new file mode 100644 index 0000000000000000000000000000000000000000..ae21e81755a38e302c55d4ac7afcaabb5fe5277d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1529.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 77, + 7 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1530.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1530.json" new file mode 100644 index 0000000000000000000000000000000000000000..87073e8d8c7c5d1481035b3e0c6b042b3f1a11e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1530.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 59, + 57 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1531.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1531.json" new file mode 100644 index 0000000000000000000000000000000000000000..50e6a21babf50df3c2fe0dc5d507aa7c498630d2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1531.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 77, + 53 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1532.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1532.json" new file mode 100644 index 0000000000000000000000000000000000000000..2d50eb407c10591f9940274ceb48f293a9c53da0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1532.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 59, + 61 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1533.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1533.json" new file mode 100644 index 0000000000000000000000000000000000000000..5488cd9513b3b72ad0b2914474b30c6af314eb47 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1533.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 7, + 65 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1534.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1534.json" new file mode 100644 index 0000000000000000000000000000000000000000..218fc80aaf51bb425fd7d000ebed28487cd3e3d7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1534.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 37, + 41 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1535.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1535.json" new file mode 100644 index 0000000000000000000000000000000000000000..6116a2273a2e7a14b2a1b683f0ae62d692fcab8f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1535.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 63, + 58 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1536.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1536.json" new file mode 100644 index 0000000000000000000000000000000000000000..68954c389b9c6c4a25df0b3a4e3d2bb88644a4fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1536.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.1", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 29, + 55 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1537.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1537.json" new file mode 100644 index 0000000000000000000000000000000000000000..12cec3c109aa9a3551ec5081353245a6a68cfc8d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1537.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 79, + 81 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1538.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1538.json" new file mode 100644 index 0000000000000000000000000000000000000000..70a8f740433cfb78ab8b89dd15b65b84a3f5ce24 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1538.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 90, + 89 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1539.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1539.json" new file mode 100644 index 0000000000000000000000000000000000000000..7ff9969a4e5f4367f3518d7f886403d2d5d5f0a6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1539.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 38, + 75 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1540.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1540.json" new file mode 100644 index 0000000000000000000000000000000000000000..2c2d8c11120157452a6f8be57b4563bc80e32054 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1540.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 92, + 48 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1541.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1541.json" new file mode 100644 index 0000000000000000000000000000000000000000..304d61dfa394633352672f337ec1aecb25f8e645 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1541.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 90, + 3 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1542.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1542.json" new file mode 100644 index 0000000000000000000000000000000000000000..cccefda5d98bb04f8129fcd9328284546d87c703 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1542.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 83, + 7 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1543.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1543.json" new file mode 100644 index 0000000000000000000000000000000000000000..ab3db55fbac52957198d98a57e859d93c0e69923 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1543.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 30, + 80 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1544.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1544.json" new file mode 100644 index 0000000000000000000000000000000000000000..f0f433d6a098ac31a616770dd4e574136635f4bc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1544.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 64, + 73 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1545.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1545.json" new file mode 100644 index 0000000000000000000000000000000000000000..cca16cc0e6fceef7cbae7a9af653a35125cd3f7b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1545.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 7, + 46 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1546.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1546.json" new file mode 100644 index 0000000000000000000000000000000000000000..0452e064f39fe418c84142ccd17069c7ef160958 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1546.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 47, + 57 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1547.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1547.json" new file mode 100644 index 0000000000000000000000000000000000000000..1ca948b65aa800ebc103cb2e2099ba243d7bf631 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1547.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 82, + 0 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1548.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1548.json" new file mode 100644 index 0000000000000000000000000000000000000000..defd0cecd39212cd6f1dcb3c10d6317c05f3a889 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1548.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 24, + 21 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1549.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1549.json" new file mode 100644 index 0000000000000000000000000000000000000000..d41cf809b472c3b1ef46f265ac160756eb5dd9e7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1549.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 6, + 98 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1550.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1550.json" new file mode 100644 index 0000000000000000000000000000000000000000..e5c31e485f6a42df39d666bca52badb747889dde --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1550.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 34, + 28 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1551.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1551.json" new file mode 100644 index 0000000000000000000000000000000000000000..340d03f2833c551c3e024cc4870f12dceaf58484 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1551.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 89, + 14 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1552.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1552.json" new file mode 100644 index 0000000000000000000000000000000000000000..3ea2ac216475c61f19fb5544e748a443c319f4ec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1552.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 66, + 95 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1553.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1553.json" new file mode 100644 index 0000000000000000000000000000000000000000..62253b813d2951747018040c512eefa454242af4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1553.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 10, + 5 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1554.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1554.json" new file mode 100644 index 0000000000000000000000000000000000000000..c096955fa183b0ad234c1ed9890a242475c181d6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1554.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 5, + 60 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1555.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1555.json" new file mode 100644 index 0000000000000000000000000000000000000000..871834cf38270f95eca0ce632ae40fd5ba8c92b9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1555.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 59, + 50 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1556.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1556.json" new file mode 100644 index 0000000000000000000000000000000000000000..582810cf4e853c14a5640b71af25c03b50eff90d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1556.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 26, + 75 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1557.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1557.json" new file mode 100644 index 0000000000000000000000000000000000000000..1745528d5ec5b2d1f2e63eda66287891080d0295 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1557.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 49, + 33 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1558.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1558.json" new file mode 100644 index 0000000000000000000000000000000000000000..479ba9aae556357496ec3ed40e317dc74405c76c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1558.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 37, + 43 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1559.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1559.json" new file mode 100644 index 0000000000000000000000000000000000000000..fc4872b48b9e15497a29c1313bee3b702f2e2b34 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1559.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 17, + 89 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1560.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1560.json" new file mode 100644 index 0000000000000000000000000000000000000000..2cb3a851fc65b4bfa9cf1cbcd9e4287629f58a29 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1560.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 21, + 95 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1561.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1561.json" new file mode 100644 index 0000000000000000000000000000000000000000..8a5a28a71f7bea4702075a91c07b0efda78ecc3b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1561.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 62, + 66 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1562.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1562.json" new file mode 100644 index 0000000000000000000000000000000000000000..c6b4a52580f6cfe7c5078a0882f9da5f36565845 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1562.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 100, + 51 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1563.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1563.json" new file mode 100644 index 0000000000000000000000000000000000000000..353ee612f7e5040cee1480b0e1cf55d0971a9e0b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1563.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 70, + 64 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1564.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1564.json" new file mode 100644 index 0000000000000000000000000000000000000000..407fb559e030b2a48a4f55b4a4385b7edc689836 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1564.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 30, + 45 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1565.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1565.json" new file mode 100644 index 0000000000000000000000000000000000000000..fee0522bc9bf2cdee223ff02763c057ea7436589 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1565.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 33, + 50 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1566.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1566.json" new file mode 100644 index 0000000000000000000000000000000000000000..8123ccbf36c7648220a005d7543a4af87c35b96a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1566.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 23, + 54 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1567.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1567.json" new file mode 100644 index 0000000000000000000000000000000000000000..8796f6077385a15c82703fce430834e2290f44d4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1567.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "3.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 75, + 71 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1568.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1568.json" new file mode 100644 index 0000000000000000000000000000000000000000..9f9a117fff77a705f57e864fdd9628d995e68796 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1568.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 38, + 62 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1569.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1569.json" new file mode 100644 index 0000000000000000000000000000000000000000..76edfe67ae224ac5a2373bf73e3b72f16cb721df --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1569.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 69, + 72 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1570.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1570.json" new file mode 100644 index 0000000000000000000000000000000000000000..4b4c66739cc9c59f7cbab4c833e7b2c55fd76fa1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1570.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 73, + 20 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1571.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1571.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac2183c713f627e2fd92384b072cf72ba7ce7d23 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1571.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 24, + 20 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1572.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1572.json" new file mode 100644 index 0000000000000000000000000000000000000000..c885d7ec94f781c35b7169660377b213bff055be --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1572.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 97, + 27 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1573.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1573.json" new file mode 100644 index 0000000000000000000000000000000000000000..2fc27e5eb59b8f8f5136650a96cde24db6d1da26 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1573.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 27, + 49 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1574.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1574.json" new file mode 100644 index 0000000000000000000000000000000000000000..4dafda49f3026aea3bcc6b4646ae1870047e2d93 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1574.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 8, + 73 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1575.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1575.json" new file mode 100644 index 0000000000000000000000000000000000000000..6c60964b988b454154b2acde201b7a4b03a6acad --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1575.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 66, + 53 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1576.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1576.json" new file mode 100644 index 0000000000000000000000000000000000000000..4fe957f07f02ee255b19fda19d67c49476dbedf0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1576.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 41, + 99 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1577.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1577.json" new file mode 100644 index 0000000000000000000000000000000000000000..7ad8c64a5a7f95bd3088d61b94352be4f239c7d6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1577.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 35, + 75 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1578.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1578.json" new file mode 100644 index 0000000000000000000000000000000000000000..76f5f67a85bbc2ff150a7cfd0b1c4916b56b92af --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1578.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 89, + 45 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1579.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1579.json" new file mode 100644 index 0000000000000000000000000000000000000000..9c4099961889976918e2778c190045739737a722 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1579.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 32, + 89 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1580.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1580.json" new file mode 100644 index 0000000000000000000000000000000000000000..2bc270f7b627ceb56ff919001e2dcc94c32ddc36 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1580.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 57, + 3 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1581.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1581.json" new file mode 100644 index 0000000000000000000000000000000000000000..c539a988de276b458c0f4317a976bc20698c5067 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1581.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 12, + 10 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1582.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1582.json" new file mode 100644 index 0000000000000000000000000000000000000000..8c619a33fe3f36e93cd86abf69adf80dea07d276 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1582.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 51, + 61 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1583.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1583.json" new file mode 100644 index 0000000000000000000000000000000000000000..823dea620c347b120f6a22f7a0fe68e904b6bf57 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1583.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 29, + 16 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1584.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1584.json" new file mode 100644 index 0000000000000000000000000000000000000000..adfc45ecd3ab568df0e195498e2b854d404469d2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1584.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 41, + 87 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1585.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1585.json" new file mode 100644 index 0000000000000000000000000000000000000000..983b494c72584c4be0df164b52fc4912942cf1a4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1585.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 32, + 58 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1586.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1586.json" new file mode 100644 index 0000000000000000000000000000000000000000..cc56a6fa55d7e4fda0d7cfeab33ba561c3200840 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1586.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 64, + 10 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1587.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1587.json" new file mode 100644 index 0000000000000000000000000000000000000000..f08c1d3ae74343e8b8ec2914240d3b8605ecb438 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1587.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 71, + 59 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1588.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1588.json" new file mode 100644 index 0000000000000000000000000000000000000000..f3815c73766c37cf91ee029bca35b2f1093e3267 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1588.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 65, + 96 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1589.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1589.json" new file mode 100644 index 0000000000000000000000000000000000000000..a2644bd722b797417c57bcf8e5dab65ce88404c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1589.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 53, + 82 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1590.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1590.json" new file mode 100644 index 0000000000000000000000000000000000000000..a4d3c870dfede7114cf8e7e9f4716b5b21e1cd23 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1590.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 65, + 58 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1591.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1591.json" new file mode 100644 index 0000000000000000000000000000000000000000..7c4302170ee16618da54c4a19179f443643b3fa9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1591.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 87, + 55 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1592.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1592.json" new file mode 100644 index 0000000000000000000000000000000000000000..5cee7b5921f9cbfbe834d7f17a098091825145fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1592.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 68, + 19 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1593.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1593.json" new file mode 100644 index 0000000000000000000000000000000000000000..95f2d2876a847d4faf3a15d9c6cb6ad41584a807 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1593.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 35, + 19 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1594.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1594.json" new file mode 100644 index 0000000000000000000000000000000000000000..584dd4bd7153077ad74f4e14f6fc2fac030b43d4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1594.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 75, + 78 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1595.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1595.json" new file mode 100644 index 0000000000000000000000000000000000000000..d96cc529a109e5d9439024d957d24b658066c908 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1595.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 31, + 34 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1596.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1596.json" new file mode 100644 index 0000000000000000000000000000000000000000..545f31ca77446491a4e787673a1c593d10fae204 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1596.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 67, + 2 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1597.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1597.json" new file mode 100644 index 0000000000000000000000000000000000000000..1adac2f9bacb0b436ec8b4d812a434d9eb3a8885 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1597.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 72, + 99 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1598.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1598.json" new file mode 100644 index 0000000000000000000000000000000000000000..8a49cc62a5770322f9bc72274ad399af6c46ea32 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1598.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 10, + 77 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1599.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1599.json" new file mode 100644 index 0000000000000000000000000000000000000000..aa510794d01bcb1eac85da946293161e693b3550 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1599.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 76, + 96 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1600.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1600.json" new file mode 100644 index 0000000000000000000000000000000000000000..d9dc4315feecc5fc609367e5c46f149349cfcb4c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1600.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 63, + 24 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1601.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1601.json" new file mode 100644 index 0000000000000000000000000000000000000000..51f77affb4660f4da47ea1e2000b28b4d20e0f05 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1601.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 70, + 15 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1602.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1602.json" new file mode 100644 index 0000000000000000000000000000000000000000..b7c25a101474f11caf773881b8de2bd4a4d968e4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1602.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 77, + 7 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1603.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1603.json" new file mode 100644 index 0000000000000000000000000000000000000000..0b810911530c0e070dd5868559316560f6bd68fc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1603.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 74, + 35 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1604.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1604.json" new file mode 100644 index 0000000000000000000000000000000000000000..bc43f540cb2387321bffdbc06dc8b9de178d448e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1604.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 86, + 50 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1605.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1605.json" new file mode 100644 index 0000000000000000000000000000000000000000..b229436535e5313fbd8bbc5f9c305448bf50c08e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1605.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 100, + 24 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1606.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1606.json" new file mode 100644 index 0000000000000000000000000000000000000000..3893b8b0fe32c01eac231e41004067cb869f0aff --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1606.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 13, + 98 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1607.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1607.json" new file mode 100644 index 0000000000000000000000000000000000000000..175621fb62d910934dcabe5ae7d5c5080717d5e3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1607.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 41, + 36 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1608.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1608.json" new file mode 100644 index 0000000000000000000000000000000000000000..fcaf702a63efdf6b0f22bc7599116b0e9c7730fc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1608.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 30, + 5 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1609.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1609.json" new file mode 100644 index 0000000000000000000000000000000000000000..560c0ea28d234c83b3647f84d0014e4b0f2efcc5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1609.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 10, + 31 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1610.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1610.json" new file mode 100644 index 0000000000000000000000000000000000000000..75d3ec62d164c9c4400426c0a98a06887855857a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1610.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 74, + 31 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1611.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1611.json" new file mode 100644 index 0000000000000000000000000000000000000000..c436b2b39bd632fc6beb4b40f6247ee238cc3373 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1611.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.1", + "shadow": "3.0", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 45, + 21 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1612.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1612.json" new file mode 100644 index 0000000000000000000000000000000000000000..f0e266f6e3bc82038f6b0d8dae9e4bf440407e8d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1612.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 80, + 96 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1613.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1613.json" new file mode 100644 index 0000000000000000000000000000000000000000..2e37c9fa03983ec0c8f7657dc8c11e0dd886205c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1613.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 44, + 87 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1614.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1614.json" new file mode 100644 index 0000000000000000000000000000000000000000..1c59271b4f8951dc1601785b27c0d9a88f14377b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1614.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 33, + 98 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1615.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1615.json" new file mode 100644 index 0000000000000000000000000000000000000000..d715689e6b13a629a2c6d84951d4023fd55146d9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1615.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 92, + 84 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1616.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1616.json" new file mode 100644 index 0000000000000000000000000000000000000000..a58b61eb944b4fb671798ed2d4b339c695991e71 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1616.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 16, + 80 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1617.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1617.json" new file mode 100644 index 0000000000000000000000000000000000000000..04add07e203ab19087c6a9e66d8b4b7a6f1b4537 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1617.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 42, + 20 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1618.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1618.json" new file mode 100644 index 0000000000000000000000000000000000000000..c539af0f6240668991e98ac756186c810d8ac997 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1618.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 55, + 71 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1619.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1619.json" new file mode 100644 index 0000000000000000000000000000000000000000..c16cb89b121173c9f2bbeda01eb5fe013bb2e0c2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1619.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 39, + 74 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1620.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1620.json" new file mode 100644 index 0000000000000000000000000000000000000000..020b56ddad9bbc0f19a4500efa883190109101a0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1620.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 62, + 2 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1621.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1621.json" new file mode 100644 index 0000000000000000000000000000000000000000..4ada7cc216fae21be4a46199722acc2e262b4815 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1621.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 89, + 75 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1622.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1622.json" new file mode 100644 index 0000000000000000000000000000000000000000..bd8f4ef33b244eec477e85fa01aa92d6fba45b45 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1622.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 32, + 73 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1623.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1623.json" new file mode 100644 index 0000000000000000000000000000000000000000..9a261e62acd1e1930f6bae538a876ae2779da2b0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1623.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 0, + 25 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1624.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1624.json" new file mode 100644 index 0000000000000000000000000000000000000000..fc9514518e19c476551e41b82467ef5d3c92f3a0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1624.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 41, + 18 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1625.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1625.json" new file mode 100644 index 0000000000000000000000000000000000000000..e3abba2c76f43c068d97804919812d98b6405212 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1625.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 32, + 66 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1626.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1626.json" new file mode 100644 index 0000000000000000000000000000000000000000..176147ee5b42260a13258ba9c6569b5a3c196f3c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1626.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 86, + 22 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1627.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1627.json" new file mode 100644 index 0000000000000000000000000000000000000000..1998bac15ea3cb7e1d167a4a4e6564bdfc78121c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1627.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 40, + 78 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1628.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1628.json" new file mode 100644 index 0000000000000000000000000000000000000000..8277f988dacd09e8f5e1445226407c19343408e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1628.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 94, + 13 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1629.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1629.json" new file mode 100644 index 0000000000000000000000000000000000000000..ff704f03b71b3c2e3923d5b014019e7606537779 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1629.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 10, + 25 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1630.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1630.json" new file mode 100644 index 0000000000000000000000000000000000000000..475ecb075d520f206f8c332f21a3d4c97e44d7b5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1630.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 0, + 85 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1631.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1631.json" new file mode 100644 index 0000000000000000000000000000000000000000..7419ef961b77d006b1b73d7471f88b1519959bb8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1631.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 89, + 99 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1632.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1632.json" new file mode 100644 index 0000000000000000000000000000000000000000..2d3bae7f33ab743f8b0b740b7720e31639d4e807 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1632.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 91, + 81 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1633.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1633.json" new file mode 100644 index 0000000000000000000000000000000000000000..2693d32dc0e92b29bb13abe5f10ac60bf19a0753 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1633.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 18, + 23 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1634.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1634.json" new file mode 100644 index 0000000000000000000000000000000000000000..b695b282b5f338e7034126bef2306432c1da9d6d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1634.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 95, + 25 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1635.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1635.json" new file mode 100644 index 0000000000000000000000000000000000000000..b5bf75fee015ba3ee6072536c5bdd2eb04718d65 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1635.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 23, + 11 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1636.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1636.json" new file mode 100644 index 0000000000000000000000000000000000000000..8f7cbaa3aff79f4a446bfa41c31053b2a53436e0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1636.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 77, + 13 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1637.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1637.json" new file mode 100644 index 0000000000000000000000000000000000000000..411080e45795031bd135d788b18e20eda292c1bc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1637.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 56, + 26 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1638.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1638.json" new file mode 100644 index 0000000000000000000000000000000000000000..38aef58b1f583a97d01452594e60fe2c9951c150 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1638.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playwrite DK Uloopet Guides", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 36, + 64 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1639.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1639.json" new file mode 100644 index 0000000000000000000000000000000000000000..2450ead46c7f03b967126dddda6bd23c2edec4cc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1639.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 24, + 96 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1640.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1640.json" new file mode 100644 index 0000000000000000000000000000000000000000..15a7daf91a00bc0a9c46b6bb14b1fffcc7bf1ee9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1640.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 58, + 27 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1641.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1641.json" new file mode 100644 index 0000000000000000000000000000000000000000..4c6ae6e0db4b6911469d79345442db4154ef8c21 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1641.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 68, + 91 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1642.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1642.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac0e6d7afcd5d1228b1aa67116456e338edbad4b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1642.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 48, + 14 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1643.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1643.json" new file mode 100644 index 0000000000000000000000000000000000000000..2c034081e83a0eedb89d87af6e45525d78294c1a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1643.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 1, + 100 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1644.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1644.json" new file mode 100644 index 0000000000000000000000000000000000000000..af494c6b076cf8b3f2b110e6ae4b4e301fcfec35 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1644.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 81, + 38 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1645.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1645.json" new file mode 100644 index 0000000000000000000000000000000000000000..7b8fdcc5708eea733901ab82b671410c730ec46c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1645.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 15, + 40 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1646.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1646.json" new file mode 100644 index 0000000000000000000000000000000000000000..71a9c60b3a822e32845f03ccc13d72be13be198d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1646.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 0, + 5 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1647.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1647.json" new file mode 100644 index 0000000000000000000000000000000000000000..65bf34d545f17a462b884ba7a78874201ba05cd2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1647.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 51, + 30 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1648.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1648.json" new file mode 100644 index 0000000000000000000000000000000000000000..e270df51b5b1b15856c6cbec2a163695ea8c7dc9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1648.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 73, + 78 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1649.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1649.json" new file mode 100644 index 0000000000000000000000000000000000000000..1babc96a832a9ec7ebc78a95599ed14a64eb5cea --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1649.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 4, + 91 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1650.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1650.json" new file mode 100644 index 0000000000000000000000000000000000000000..089ec030b1ef0a53c49cbec827bcaff2449116ce --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1650.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 50, + 98 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1651.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1651.json" new file mode 100644 index 0000000000000000000000000000000000000000..52134b87221d2dd5643e9d5c207258eb872d3d19 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1651.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 93, + 72 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1652.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1652.json" new file mode 100644 index 0000000000000000000000000000000000000000..10110c25b30ffda8c9eac55005cd452a0732e7a4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1652.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 61, + 93 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1653.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1653.json" new file mode 100644 index 0000000000000000000000000000000000000000..206d962fd83436971276c570422bda09aeaec41d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1653.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 56, + 37 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1654.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1654.json" new file mode 100644 index 0000000000000000000000000000000000000000..0eb36d51717510e0c5913d92e1e8cc2121572d8b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1654.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 26, + 19 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1655.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1655.json" new file mode 100644 index 0000000000000000000000000000000000000000..d008697bc6a2cca6df66b1bf4053943d683b16b8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1655.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 7, + 35 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1656.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1656.json" new file mode 100644 index 0000000000000000000000000000000000000000..3d034d928d6ca3426d2e2dedf05a60c94de18387 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1656.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 44, + 32 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1657.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1657.json" new file mode 100644 index 0000000000000000000000000000000000000000..2a7febf261ab0f3aac9b7703425d7d88719215b6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1657.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 92, + 42 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1658.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1658.json" new file mode 100644 index 0000000000000000000000000000000000000000..acba69e5e675882bcc288c05bdb42383d315bac1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1658.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 11, + 57 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1659.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1659.json" new file mode 100644 index 0000000000000000000000000000000000000000..a9bcd9c8bf3e03e0c4b82434b7db072333cbb0b8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1659.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 59, + 57 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1660.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1660.json" new file mode 100644 index 0000000000000000000000000000000000000000..4bea6811239eb53959d0095bd5c68d8c6b36dd7a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1660.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 7, + 4 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1661.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1661.json" new file mode 100644 index 0000000000000000000000000000000000000000..9bad98adef364efa45cb77c045cce00850a60ef1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1661.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 60, + 81 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1662.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1662.json" new file mode 100644 index 0000000000000000000000000000000000000000..315828eb8f993e95da5bb5893186b5cc1ce67fe5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1662.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 12, + 56 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1663.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1663.json" new file mode 100644 index 0000000000000000000000000000000000000000..eb7820b3f8466d4343ac542c250fffc50f8db175 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1663.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 34, + 84 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1664.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1664.json" new file mode 100644 index 0000000000000000000000000000000000000000..b88f5d728e30c2dbecd6bd8425cf1a7b6c49be69 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1664.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 52, + 58 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1665.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1665.json" new file mode 100644 index 0000000000000000000000000000000000000000..9fefcf9e9c298eedb5f4cc61af28dd8f52b913b6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1665.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 85, + 6 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1666.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1666.json" new file mode 100644 index 0000000000000000000000000000000000000000..5d5891bac40625cacf96ca41faf8171c63351760 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1666.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 68, + 15 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1667.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1667.json" new file mode 100644 index 0000000000000000000000000000000000000000..6cccdff9c005963694d9adfa1e0de7153f51e047 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1667.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 6, + 56 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1668.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1668.json" new file mode 100644 index 0000000000000000000000000000000000000000..241b9f47f2a0389565931dc291f99286b7603037 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1668.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 43, + 82 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1669.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1669.json" new file mode 100644 index 0000000000000000000000000000000000000000..9e2d2fcd19a88a4a891cadfe7078db5de65e9f17 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1669.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 45, + 28 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1670.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1670.json" new file mode 100644 index 0000000000000000000000000000000000000000..15672ae926c620cbff3fad9c7af9c6e55668f951 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1670.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 80, + 78 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1671.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1671.json" new file mode 100644 index 0000000000000000000000000000000000000000..c955ef74f307a3ba8779643962f593308ef23942 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1671.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 22, + 76 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1672.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1672.json" new file mode 100644 index 0000000000000000000000000000000000000000..f821470c210975ad7b82de39ba0f20cd87575e78 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1672.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 52, + 61 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1673.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1673.json" new file mode 100644 index 0000000000000000000000000000000000000000..56c6c0d4f2a5601aad581b5d8afa5e0435b9083a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1673.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 50, + 14 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1674.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1674.json" new file mode 100644 index 0000000000000000000000000000000000000000..f57b6a8a5cb468a087d1d065d2551fd5b6ec2771 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1674.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 76, + 45 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1675.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1675.json" new file mode 100644 index 0000000000000000000000000000000000000000..2e293d287da84b4cdde2f26251a649d7e0525bc8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1675.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 65, + 71 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1676.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1676.json" new file mode 100644 index 0000000000000000000000000000000000000000..1d76836919970971969043942cc04ad707411a6e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1676.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 68, + 55 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1677.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1677.json" new file mode 100644 index 0000000000000000000000000000000000000000..96d42b22d4b460f395caee5d7605e6e588959c7b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1677.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 98, + 60 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1678.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1678.json" new file mode 100644 index 0000000000000000000000000000000000000000..ee6b8a87adae45d1ffc1b3a0a9dad3f382054042 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1678.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 9, + 78 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1679.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1679.json" new file mode 100644 index 0000000000000000000000000000000000000000..0fa870bd11afd10e79347eef8d8d89df99557db9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1679.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.0", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 86, + 62 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1680.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1680.json" new file mode 100644 index 0000000000000000000000000000000000000000..eadd0e3bc80686fcd92075e273b874b0384f5206 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1680.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 38, + 4 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1681.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1681.json" new file mode 100644 index 0000000000000000000000000000000000000000..03a9bce7a23878e66c4c4a494a28c8675bf2623c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1681.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 55, + 9 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1682.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1682.json" new file mode 100644 index 0000000000000000000000000000000000000000..a83a1cfacbcc17e078378f5149565a88feea679f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1682.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 74, + 2 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1683.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1683.json" new file mode 100644 index 0000000000000000000000000000000000000000..1dfc77073b838f3897449861a31d28f151c2309f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1683.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 44, + 73 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1684.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1684.json" new file mode 100644 index 0000000000000000000000000000000000000000..523bcaadd088cb323e462515084e53599e16401a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1684.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 36, + 52 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1685.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1685.json" new file mode 100644 index 0000000000000000000000000000000000000000..b12a6218e81cdd0c1d134a600ddbc2f756e311d5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1685.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 13, + 1 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1686.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1686.json" new file mode 100644 index 0000000000000000000000000000000000000000..143ef9cce203cc54dae0eda1b18647da0de7aafa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1686.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 9, + 59 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1687.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1687.json" new file mode 100644 index 0000000000000000000000000000000000000000..bb568e0820bb0ed00a3a68338f405ab0fd91dfcf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1687.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 37, + 92 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1688.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1688.json" new file mode 100644 index 0000000000000000000000000000000000000000..668018e1541aad8de6e68a2a9f0b86c755645dbc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1688.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 52, + 77 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1689.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1689.json" new file mode 100644 index 0000000000000000000000000000000000000000..9d23d00cb21aa013f86de2e5548acfa631a9c751 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1689.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 6, + 47 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1690.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1690.json" new file mode 100644 index 0000000000000000000000000000000000000000..8674b909b13c036e31600f7f1b34e6e90b87aafe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1690.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 10, + 17 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1691.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1691.json" new file mode 100644 index 0000000000000000000000000000000000000000..169b05024283db8eda63f4a70f3cf675a24a5f84 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1691.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 59, + 63 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1692.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1692.json" new file mode 100644 index 0000000000000000000000000000000000000000..e91483f70c744f3651fd17260ae90d9870c0d63c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1692.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 52, + 94 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1693.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1693.json" new file mode 100644 index 0000000000000000000000000000000000000000..23672a0098af00f654ce18c573de8d356ff9853b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1693.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 52, + 78 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1694.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1694.json" new file mode 100644 index 0000000000000000000000000000000000000000..be127a955a7d0785b1a660f4195ec78b0a1faaf8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1694.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 14, + 63 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1695.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1695.json" new file mode 100644 index 0000000000000000000000000000000000000000..da0b2ab917aa37e5af25371e21ca0a3f7e8fb4f2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1695.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "3.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 51, + 91 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1696.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1696.json" new file mode 100644 index 0000000000000000000000000000000000000000..1b5e9bd7aeddf75b8ef098bd91382966dcb49658 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1696.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 1, + 24 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1697.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1697.json" new file mode 100644 index 0000000000000000000000000000000000000000..6202099ea322ab77edb26fa480cc86f94454f2ec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1697.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 56, + 71 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1698.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1698.json" new file mode 100644 index 0000000000000000000000000000000000000000..30c2c716b24bb67d196828440310c6e5657af12a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1698.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 31, + 89 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1699.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1699.json" new file mode 100644 index 0000000000000000000000000000000000000000..c9611e1b65d103857398c2449dbb684875e7d316 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1699.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 53, + 34 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1700.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1700.json" new file mode 100644 index 0000000000000000000000000000000000000000..aed07ca59aa7cc7ec4bac1db3059e83848c4ba61 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1700.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 79, + 56 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1701.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1701.json" new file mode 100644 index 0000000000000000000000000000000000000000..ff8f4341ba45a51e5db98943d7a4ca6bcfbe3248 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1701.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 26, + 40 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1702.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1702.json" new file mode 100644 index 0000000000000000000000000000000000000000..eb9305746bd206757c2a140fa6152cf0d701c7e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1702.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 30, + 61 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1703.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1703.json" new file mode 100644 index 0000000000000000000000000000000000000000..49a314fe1d1eb9ce8c2752120f3c98ee04d1b6af --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1703.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 87, + 65 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1704.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1704.json" new file mode 100644 index 0000000000000000000000000000000000000000..0ccb2a876ffe66b35a66c0a6ce42a52db7b04e8f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1704.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 61, + 100 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1705.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1705.json" new file mode 100644 index 0000000000000000000000000000000000000000..e9d8b28afb5ffb16a79ef4ab86c601af74c3450c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1705.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 28, + 1 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1706.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1706.json" new file mode 100644 index 0000000000000000000000000000000000000000..2935874e560738245ac5b9763127c1d619dc75c8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1706.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 52, + 13 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1707.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1707.json" new file mode 100644 index 0000000000000000000000000000000000000000..7aebe9a4dc95479cb50dbe7b200c7018faf083a5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1707.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 13, + 15 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1708.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1708.json" new file mode 100644 index 0000000000000000000000000000000000000000..b3bf481491ebc1262a1f20286f35316089bbfbe7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1708.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 86, + 78 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1709.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1709.json" new file mode 100644 index 0000000000000000000000000000000000000000..5afc2c709af797f41de4b49c958a545564fedf9f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1709.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 63, + 23 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1710.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1710.json" new file mode 100644 index 0000000000000000000000000000000000000000..46df9c31a72a5e9b47197e1a85640ec1d326e031 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1710.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 97, + 58 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1711.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1711.json" new file mode 100644 index 0000000000000000000000000000000000000000..20ef05b37a8f558cf0e14d610a19c4e47dd4ac22 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1711.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 57, + 47 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1712.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1712.json" new file mode 100644 index 0000000000000000000000000000000000000000..aaad5caa444a959fbb489ad5bad22c80ddd5ac7c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1712.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 36, + 96 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1713.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1713.json" new file mode 100644 index 0000000000000000000000000000000000000000..255fa0d195dbf120078048fa6861e380ba3e41ff --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1713.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 24, + 97 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1714.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1714.json" new file mode 100644 index 0000000000000000000000000000000000000000..eecc7641a5a51b909d4794e6f2b2b00bc76cb8d4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1714.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 59, + 26 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1715.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1715.json" new file mode 100644 index 0000000000000000000000000000000000000000..ffd73751fae3f6f7118426067f9f47f4e4b3ae04 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1715.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 54, + 9 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1716.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1716.json" new file mode 100644 index 0000000000000000000000000000000000000000..e29ae5975cec61cb9d795963eb6e43f5f471eeae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1716.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 54, + 71 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1717.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1717.json" new file mode 100644 index 0000000000000000000000000000000000000000..c198979e53655818387c8de8c92e7f5fa48c9320 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1717.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 90, + 99 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1718.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1718.json" new file mode 100644 index 0000000000000000000000000000000000000000..e9b9aed75806fb3d9943286426c1f78234f10afd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1718.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 69, + 91 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1719.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1719.json" new file mode 100644 index 0000000000000000000000000000000000000000..7edbb568421e8b9f060e0541f1432a2a5bb5c7c7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1719.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 82, + 60 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1720.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1720.json" new file mode 100644 index 0000000000000000000000000000000000000000..6a38abf8a229951fcb8f9de39a375cfa011c4b9f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1720.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 28, + 86 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1721.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1721.json" new file mode 100644 index 0000000000000000000000000000000000000000..834f9d4fbda457eeb46f060701c61ca6a66029cb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1721.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 6, + 8 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1722.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1722.json" new file mode 100644 index 0000000000000000000000000000000000000000..637e9406e611b48909f46171a944b06987dc4c30 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1722.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 89, + 20 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1723.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1723.json" new file mode 100644 index 0000000000000000000000000000000000000000..2f2a7eb5efb5c75277e8eb9aa42f5716d86dd884 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1723.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 45, + 86 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1724.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1724.json" new file mode 100644 index 0000000000000000000000000000000000000000..38ca0e444de12c2bc87dc72e0285b322517ac97c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1724.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 68, + 35 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1725.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1725.json" new file mode 100644 index 0000000000000000000000000000000000000000..319932e810046d3f7b449a5a3e8fcc07d0caadb1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1725.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 80, + 76 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1726.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1726.json" new file mode 100644 index 0000000000000000000000000000000000000000..751832b6a7da122b8099bd1bb50a22db78ebb803 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1726.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 26, + 18 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1727.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1727.json" new file mode 100644 index 0000000000000000000000000000000000000000..55d676c6b96ec8a1688f659f34e960150a310a4f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1727.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 28, + 36 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1728.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1728.json" new file mode 100644 index 0000000000000000000000000000000000000000..edf5386df2f4f2966d5dc9c3c5cb58526f79e8bf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1728.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 41, + 56 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1729.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1729.json" new file mode 100644 index 0000000000000000000000000000000000000000..8b0d32c3ad1c472304d95d08bd352d4da52d4aab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1729.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 58, + 23 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1730.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1730.json" new file mode 100644 index 0000000000000000000000000000000000000000..1a01783c79adb85789a8bf236f3d21eab4d227ca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1730.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 67, + 19 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1731.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1731.json" new file mode 100644 index 0000000000000000000000000000000000000000..aa8c1d7dbe8e2a0ed827b33740b63e09611790c5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1731.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 26, + 94 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1732.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1732.json" new file mode 100644 index 0000000000000000000000000000000000000000..697fa3a3c67af90cb0012e67547a094087b3e279 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1732.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 99, + 19 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1733.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1733.json" new file mode 100644 index 0000000000000000000000000000000000000000..f9183de628458e5987e3bfac8592345638b8cc76 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1733.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 0, + 93 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1734.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1734.json" new file mode 100644 index 0000000000000000000000000000000000000000..712aca891a3c3fa08df440ecdd9ac136522dc24f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1734.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 53, + 77 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1735.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1735.json" new file mode 100644 index 0000000000000000000000000000000000000000..fbb54cfdf22c87285b4b3ca67f7cbd498fc6a3d8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1735.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 19, + 90 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1736.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1736.json" new file mode 100644 index 0000000000000000000000000000000000000000..6024e8222c52e0ad640d77b3b23fa32b724c9487 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1736.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 53, + 15 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1737.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1737.json" new file mode 100644 index 0000000000000000000000000000000000000000..c00960f16dcdfbb2ba38816cb162d1ff8e8d0f06 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1737.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 7, + 31 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1738.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1738.json" new file mode 100644 index 0000000000000000000000000000000000000000..5125e29234c165d792cef49b5cb49a316b38e3b7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1738.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 74, + 55 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1739.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1739.json" new file mode 100644 index 0000000000000000000000000000000000000000..76bb108065fd85489a994697c88a7a4c62f22016 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1739.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 4, + 11 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1740.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1740.json" new file mode 100644 index 0000000000000000000000000000000000000000..141ccad664961d2a52d5337a1d75f42c74e7a60d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1740.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 67, + 7 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1741.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1741.json" new file mode 100644 index 0000000000000000000000000000000000000000..3a02f36d7b3dc91b9fe3ba0cc724009b973e63bb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1741.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 19, + 52 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1742.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1742.json" new file mode 100644 index 0000000000000000000000000000000000000000..554443a1efb774fa6d650143697c191facb82ffc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1742.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 71, + 21 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1743.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1743.json" new file mode 100644 index 0000000000000000000000000000000000000000..2c7f07b1e17adef9ac1db40a682f5b014823a873 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1743.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 15, + 84 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1744.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1744.json" new file mode 100644 index 0000000000000000000000000000000000000000..a590ac55c58561436655dc0d293d7ad44463d1af --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1744.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 68, + 24 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1745.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1745.json" new file mode 100644 index 0000000000000000000000000000000000000000..4760be57f5d3ad97da24f37856c4c84c89490b7d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1745.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 49, + 13 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1746.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1746.json" new file mode 100644 index 0000000000000000000000000000000000000000..3270a11ec2c610a195b5f2e445fb75b137dbd650 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1746.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 86, + 62 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1747.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1747.json" new file mode 100644 index 0000000000000000000000000000000000000000..7b7e570c763c07e0f44b2ca0bde749d3c2f50ddc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1747.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 70, + 71 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1748.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1748.json" new file mode 100644 index 0000000000000000000000000000000000000000..55eb7277fcfafec68a4cad43c33104bc292cad8f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1748.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 92, + 50 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1749.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1749.json" new file mode 100644 index 0000000000000000000000000000000000000000..aaae139ddcaf670867cd04126b69b3a8b1cca803 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1749.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 65, + 63 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1750.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1750.json" new file mode 100644 index 0000000000000000000000000000000000000000..d4d1a921bf258ddeca2c2be684e43dd791321568 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1750.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 30, + 75 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1751.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1751.json" new file mode 100644 index 0000000000000000000000000000000000000000..479333ec88469f723db0d7e6fdb9b7aefca53275 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1751.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 95, + 71 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1752.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1752.json" new file mode 100644 index 0000000000000000000000000000000000000000..8a79be6c98480bdea1ac82a5d3431935b524babe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1752.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 34, + 88 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1753.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1753.json" new file mode 100644 index 0000000000000000000000000000000000000000..cf99769eb54947ab9c9a0014b2113c83da70f7d7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1753.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 4, + 85 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1754.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1754.json" new file mode 100644 index 0000000000000000000000000000000000000000..f6a33d4f74c734ad7f8650339dd21a8d53e75094 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1754.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 56, + 58 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1755.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1755.json" new file mode 100644 index 0000000000000000000000000000000000000000..87363153c82729415e42f1a6730c5c13fa4de35a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1755.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 1, + 28 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1756.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1756.json" new file mode 100644 index 0000000000000000000000000000000000000000..2f9f4336e84d6788435648d1df3c3c6c13dd0a5e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1756.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 79, + 71 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1757.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1757.json" new file mode 100644 index 0000000000000000000000000000000000000000..cff08c082b1a1fcb19e722f597a186d895bfef7f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1757.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 1, + 59 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1758.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1758.json" new file mode 100644 index 0000000000000000000000000000000000000000..c901c89349cd0e17e7b44ff41afedf1ffa675b20 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1758.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 16, + 17 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1759.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1759.json" new file mode 100644 index 0000000000000000000000000000000000000000..1f5e80b3057ee5a2de3308a11d1c827a77af9e9f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1759.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 88, + 60 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1760.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1760.json" new file mode 100644 index 0000000000000000000000000000000000000000..a6b8d8a3460f9a4f40c241d80477ca7a88cac77c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1760.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 8, + 42 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1761.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1761.json" new file mode 100644 index 0000000000000000000000000000000000000000..1cfe9be3487e9083d4a0a1e5343924402f50ce81 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1761.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 98, + 39 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1762.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1762.json" new file mode 100644 index 0000000000000000000000000000000000000000..05f8d754be472726a39ad681486226a999235fde --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1762.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 82, + 22 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1763.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1763.json" new file mode 100644 index 0000000000000000000000000000000000000000..9f2a93b6844b574bd8e2eb3eccf49c57ecfe277b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1763.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 91, + 87 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1764.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1764.json" new file mode 100644 index 0000000000000000000000000000000000000000..742e8ed559301928728ec1014a901ff328300742 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1764.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 46, + 30 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1765.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1765.json" new file mode 100644 index 0000000000000000000000000000000000000000..3b08ce445d4f0d5a5f35d883fec5fc695384eafc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1765.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 74, + 9 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1766.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1766.json" new file mode 100644 index 0000000000000000000000000000000000000000..e98c087899acbd1c5720716ab8efa8fe2ab5ebda --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1766.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 19, + 32 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1767.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1767.json" new file mode 100644 index 0000000000000000000000000000000000000000..b6d97d06544323a6e5515d648ef2ccdc2328c7a9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1767.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 26, + 29 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1768.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1768.json" new file mode 100644 index 0000000000000000000000000000000000000000..b908341ecae1a04ad7b6b3fb91885bc7222edb7c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1768.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 81, + 67 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1769.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1769.json" new file mode 100644 index 0000000000000000000000000000000000000000..31ae14c241f4e90c0e5ad0064efa6442b023d2a8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1769.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 38, + 34 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1770.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1770.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f4c91868927454a5b245c13ae38aeaa44192055 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1770.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 86, + 88 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1771.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1771.json" new file mode 100644 index 0000000000000000000000000000000000000000..f3ea8dc379fe3dc1812320888afd7ea96e295f1c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1771.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 74, + 3 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1772.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1772.json" new file mode 100644 index 0000000000000000000000000000000000000000..34baa55c5a202ce3fb50ce6a425079eb2d892891 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1772.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 41, + 24 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1773.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1773.json" new file mode 100644 index 0000000000000000000000000000000000000000..bb6264f9219f9cd78d28a14f07cdf56b009989b4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1773.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "3.0", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 49, + 74 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1774.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1774.json" new file mode 100644 index 0000000000000000000000000000000000000000..3e15a2aee7e6ae55bb869b4e693e3e8a8a1e9f0c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1774.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 27, + 34 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1775.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1775.json" new file mode 100644 index 0000000000000000000000000000000000000000..40d592629b18d1e0cbfe2c76d9c0fd9e13167483 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1775.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 1, + 11 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1776.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1776.json" new file mode 100644 index 0000000000000000000000000000000000000000..e3c0a013515be964f7e13b5dac92143e0c5cb895 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1776.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 44, + 100 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1777.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1777.json" new file mode 100644 index 0000000000000000000000000000000000000000..10a2abf2c7ed4b86de022d9d0593f52700fb1c3e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1777.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 98, + 62 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1778.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1778.json" new file mode 100644 index 0000000000000000000000000000000000000000..4a730316372de3ecec5de967209f85a34fb54540 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1778.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 72, + 5 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1779.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1779.json" new file mode 100644 index 0000000000000000000000000000000000000000..51ae33e4fa1c00c3cb2e66baae6a95f65576e8a5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1779.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 34, + 90 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1780.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1780.json" new file mode 100644 index 0000000000000000000000000000000000000000..477c74582478b8cf1e79118e7221842d3917a00c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1780.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 11, + 79 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1781.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1781.json" new file mode 100644 index 0000000000000000000000000000000000000000..3ba26066a333379a12f618e5ee88a3402cddb71d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1781.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 26, + 75 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1782.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1782.json" new file mode 100644 index 0000000000000000000000000000000000000000..450ef7ab88de4d1ac841aab9f3b6b6b2b5f30fc0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1782.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 100, + 29 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1783.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1783.json" new file mode 100644 index 0000000000000000000000000000000000000000..b157468d2fc801171a0063724c6acb0863567fce --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1783.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 13, + 55 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1784.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1784.json" new file mode 100644 index 0000000000000000000000000000000000000000..acedbb4f5449480f9d9916027ac53407d7fd394b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1784.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 64, + 61 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1785.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1785.json" new file mode 100644 index 0000000000000000000000000000000000000000..9f37bf535cf74035e9cd66909ced0c7c9877f9c9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1785.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 44, + 21 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1786.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1786.json" new file mode 100644 index 0000000000000000000000000000000000000000..6f7ddef386418e3ef6e2b3c6d2899e5be2f43c70 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1786.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 53, + 18 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1787.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1787.json" new file mode 100644 index 0000000000000000000000000000000000000000..71cf35199fba4cfae3578fd7b3f37ea458c51ac9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1787.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 18, + 45 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1788.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1788.json" new file mode 100644 index 0000000000000000000000000000000000000000..bbd077c6d65c59d7350a42a541b12d1a2dbfc1a3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1788.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 27, + 82 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1789.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1789.json" new file mode 100644 index 0000000000000000000000000000000000000000..efb34d830f9a753dde6604b1d12a9b1e7bb1f01d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1789.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 100, + 100 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1790.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1790.json" new file mode 100644 index 0000000000000000000000000000000000000000..e6719d1cfd155da20c43761f75d5ce3088af9596 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1790.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 51, + 95 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1791.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1791.json" new file mode 100644 index 0000000000000000000000000000000000000000..6f30cbcd7dfe9790862cf5378232d5b03f67e5cd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1791.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 45, + 20 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1792.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1792.json" new file mode 100644 index 0000000000000000000000000000000000000000..404dc3e7976ce25b6f86da0cd660c543a3821d51 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1792.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 57, + 71 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1793.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1793.json" new file mode 100644 index 0000000000000000000000000000000000000000..cf3a6866bfdf74a127068a54c7ce9b7ef15ad32a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1793.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 38, + 11 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1794.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1794.json" new file mode 100644 index 0000000000000000000000000000000000000000..e1dd0b1bc69311b68c1804a3930e494fa889bdfa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1794.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 82, + 19 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1795.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1795.json" new file mode 100644 index 0000000000000000000000000000000000000000..22046e80aad9724e634fb8243c3c5e4af235e8f2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1795.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 96, + 36 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1796.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1796.json" new file mode 100644 index 0000000000000000000000000000000000000000..3f2d817b663a4ba946f2af6651841f529a9dcfc7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1796.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 78, + 64 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1797.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1797.json" new file mode 100644 index 0000000000000000000000000000000000000000..67b7f219ac8113c6eb9ee137a4426e940b474222 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1797.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 52, + 36 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1798.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1798.json" new file mode 100644 index 0000000000000000000000000000000000000000..45f60af92ccb30a046943b38e0cb742b188e201d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1798.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 76, + 80 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1799.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1799.json" new file mode 100644 index 0000000000000000000000000000000000000000..356374d94df1f1c6b0cf7c44647a0a298d3554fa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1799.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 4, + 45 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1800.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1800.json" new file mode 100644 index 0000000000000000000000000000000000000000..dcea3efc1d871859f9bc744a0444f6203aa8868e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1800.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 99, + 25 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1801.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1801.json" new file mode 100644 index 0000000000000000000000000000000000000000..1aeed261b2f5d6b6e704c2513c0a62923da40029 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1801.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 60, + 5 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1802.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1802.json" new file mode 100644 index 0000000000000000000000000000000000000000..25e271b18bbbc865ba3b048bd29e0c657f7eaf48 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1802.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.0", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 68, + 13 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1803.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1803.json" new file mode 100644 index 0000000000000000000000000000000000000000..f641ce2889747310f2b8a1158a2a0969f6343f97 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1803.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 22, + 45 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1804.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1804.json" new file mode 100644 index 0000000000000000000000000000000000000000..e73c94cad4844b02e9d4b29cb4077f611fcc3acd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1804.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 48, + 57 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1805.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1805.json" new file mode 100644 index 0000000000000000000000000000000000000000..3bc871cf8354f470791d21ee8e172cd4728173bc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1805.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 61, + 73 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1806.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1806.json" new file mode 100644 index 0000000000000000000000000000000000000000..0eb50af5c668f618571564b0ed82045065de0fff --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1806.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 15, + 20 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1807.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1807.json" new file mode 100644 index 0000000000000000000000000000000000000000..baea60f0e896ae1d87b0bc20d311c7b44acbe0cd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1807.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 51, + 93 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1808.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1808.json" new file mode 100644 index 0000000000000000000000000000000000000000..f349542a3b295807db16e33474fd04a76f4998ec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1808.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 57, + 26 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1809.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1809.json" new file mode 100644 index 0000000000000000000000000000000000000000..b9d4066b830066adbcf61343bb44ff6a9f90057d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1809.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 93, + 94 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1810.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1810.json" new file mode 100644 index 0000000000000000000000000000000000000000..1c36a27b6a3504fceac4148148b524e6a9f05868 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1810.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 40, + 38 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1811.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1811.json" new file mode 100644 index 0000000000000000000000000000000000000000..b48a889f8b32ffdb09a5540ceb54ef0a23927a98 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1811.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 73, + 52 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1812.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1812.json" new file mode 100644 index 0000000000000000000000000000000000000000..a34e2df526df5237a2c6724078ad8f9ce95861e6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1812.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 36, + 38 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1813.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1813.json" new file mode 100644 index 0000000000000000000000000000000000000000..1c27342924b09edec1a72fc3002efae80587aaec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1813.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "3.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 39, + 4 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1814.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1814.json" new file mode 100644 index 0000000000000000000000000000000000000000..ea238d69de2462c354e4410f842914cc901da03e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1814.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 69, + 90 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1815.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1815.json" new file mode 100644 index 0000000000000000000000000000000000000000..5f97dffe71604773f6b9dd9fa613f72067276dd3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1815.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito Sans", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 16, + 45 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1816.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1816.json" new file mode 100644 index 0000000000000000000000000000000000000000..8be6644b9208f386c59aaa6e8357478d10a9c83f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1816.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 94, + 26 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1817.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1817.json" new file mode 100644 index 0000000000000000000000000000000000000000..f62ad1cf2d08f49ab1c93c9d1ff84b9e9dc1b68f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1817.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 63, + 24 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1818.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1818.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f4ed1973a5bacf5166f01b32abb178ea32f5304 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1818.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 75, + 91 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1819.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1819.json" new file mode 100644 index 0000000000000000000000000000000000000000..825b4eff51b43922489455c52624c498a082cf35 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1819.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 65, + 3 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1820.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1820.json" new file mode 100644 index 0000000000000000000000000000000000000000..21e33cbbae42a7e0d7d70636f94f78b93d8d84b7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1820.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 53, + 23 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1821.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1821.json" new file mode 100644 index 0000000000000000000000000000000000000000..4c65dd2d08268e746774222e1a7fd4b3d537fcd5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1821.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 86, + 42 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1822.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1822.json" new file mode 100644 index 0000000000000000000000000000000000000000..a04e3811f4c973f3935e8d204ae239c660c02bfb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1822.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 3, + 79 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1823.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1823.json" new file mode 100644 index 0000000000000000000000000000000000000000..a2ec3f22ba30f120bbe5ac298f369c6df5e62333 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1823.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 33, + 22 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1824.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1824.json" new file mode 100644 index 0000000000000000000000000000000000000000..2224491ecd5db92c6d89e7d6ccb4fade5c4f274b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1824.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 82, + 82 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1825.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1825.json" new file mode 100644 index 0000000000000000000000000000000000000000..d166b375e55f9275344be0d2b63d49022fdea6e6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1825.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 76, + 12 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1826.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1826.json" new file mode 100644 index 0000000000000000000000000000000000000000..09dd17bcf7d0155e3c49ef3ea0f193b52a2ebff8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1826.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 73, + 17 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1827.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1827.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac31aa143570adeca1a9f0bb16b1392df5095898 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1827.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 24, + 53 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1828.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1828.json" new file mode 100644 index 0000000000000000000000000000000000000000..82aea4701d7a06bbca10810289631a15fa87734d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1828.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 91, + 53 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1829.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1829.json" new file mode 100644 index 0000000000000000000000000000000000000000..867ac706d49e8e5663f58f3e0ef66edd6ff58e61 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1829.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 74, + 6 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1830.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1830.json" new file mode 100644 index 0000000000000000000000000000000000000000..ddcaa0cf526e2f974d8f414e3c7200af4435679a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1830.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 0, + 75 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1831.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1831.json" new file mode 100644 index 0000000000000000000000000000000000000000..691f61d2faee74c90e82104d9e95354431312fba --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1831.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 19, + 2 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1832.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1832.json" new file mode 100644 index 0000000000000000000000000000000000000000..f2e7df1fc031bcb59cdb95692c85bba37487eff9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1832.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 79, + 58 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1833.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1833.json" new file mode 100644 index 0000000000000000000000000000000000000000..641eca7ef585b87c7652fa6b39212665ee094b39 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1833.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 0, + 71 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1834.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1834.json" new file mode 100644 index 0000000000000000000000000000000000000000..d2b957888d5a9d71f88f8c386369613ab8afde88 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1834.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 82, + 53 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1835.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1835.json" new file mode 100644 index 0000000000000000000000000000000000000000..f8210b6ab4d8e6d8abac1da5c745e5c441ffb8c3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1835.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 13, + 15 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1836.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1836.json" new file mode 100644 index 0000000000000000000000000000000000000000..e16126f00138fe7887625e40e18ae01cc39171ab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1836.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 60, + 33 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1837.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1837.json" new file mode 100644 index 0000000000000000000000000000000000000000..1868d93b038be2945e4fbb74bcd5c0f3df18a3b2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1837.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 1, + 90 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1838.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1838.json" new file mode 100644 index 0000000000000000000000000000000000000000..998e7bfe43532d70f84dbc6c297fc11657ac036c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1838.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 84, + 57 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1839.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1839.json" new file mode 100644 index 0000000000000000000000000000000000000000..dc292d432d511024178477ec708e7ccd85cbe324 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1839.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 71, + 50 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1840.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1840.json" new file mode 100644 index 0000000000000000000000000000000000000000..6a8c735c008a698c126b361268fd5ea3faff9132 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1840.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 71, + 36 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1841.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1841.json" new file mode 100644 index 0000000000000000000000000000000000000000..c78aeaaf54ceed1625ec0e345d289852f63fbd1c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1841.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 10, + 71 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1842.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1842.json" new file mode 100644 index 0000000000000000000000000000000000000000..5ec9f93b1b7b87cd16ddc22e6ac095f87cda4504 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1842.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 19, + 48 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1843.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1843.json" new file mode 100644 index 0000000000000000000000000000000000000000..c0f2cb6d01916079ff14107157e239f7733e445f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1843.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 96, + 80 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1844.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1844.json" new file mode 100644 index 0000000000000000000000000000000000000000..61a6a483e6e2ff924ea10186be85300ec43d555c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1844.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 12, + 63 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1845.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1845.json" new file mode 100644 index 0000000000000000000000000000000000000000..9a733975786d3f6f46e98940b96f9e3d7fbdd9f9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1845.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 66, + 67 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1846.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1846.json" new file mode 100644 index 0000000000000000000000000000000000000000..45db43d6c4c681053c9c53ab6ab473dd51c5e33f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1846.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 67, + 44 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1847.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1847.json" new file mode 100644 index 0000000000000000000000000000000000000000..9b2188131a7afc3e99242c7a16a69961762cc29d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1847.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 79, + 47 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1848.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1848.json" new file mode 100644 index 0000000000000000000000000000000000000000..68082688cd8cf26820da855422063225169ef1fc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1848.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 15, + 7 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1849.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1849.json" new file mode 100644 index 0000000000000000000000000000000000000000..5292a6afc7a618a60d5fe197b84fcc04f901954c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1849.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 66, + 8 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1850.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1850.json" new file mode 100644 index 0000000000000000000000000000000000000000..3be9735c87a61f37ab70653a93ccf94aa331fa7f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1850.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 23, + 77 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1851.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1851.json" new file mode 100644 index 0000000000000000000000000000000000000000..8446aec09ac0bf7d15faff74db77450c3621b862 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1851.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 15, + 10 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1852.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1852.json" new file mode 100644 index 0000000000000000000000000000000000000000..89f7e111fbb50d240551a23a5b1dff7c47873778 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1852.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 96, + 61 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1853.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1853.json" new file mode 100644 index 0000000000000000000000000000000000000000..8c5efb5cc706a8dfb266f1499e0e37b1dc879e18 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1853.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 39, + 34 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1854.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1854.json" new file mode 100644 index 0000000000000000000000000000000000000000..e2e5a872a53188beaf38ca41808b16075483fcee --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1854.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 35, + 88 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1855.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1855.json" new file mode 100644 index 0000000000000000000000000000000000000000..613d53bed3de8d726e9dd95a246f7db04d7b2a39 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1855.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 39, + 76 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1856.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1856.json" new file mode 100644 index 0000000000000000000000000000000000000000..2dcbb205ec9322c716c65dbfece1b220f41192c2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1856.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 49, + 30 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1857.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1857.json" new file mode 100644 index 0000000000000000000000000000000000000000..9d0eb6c779e7378d3d8d176f606fb933d411fe56 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1857.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 84, + 33 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1858.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1858.json" new file mode 100644 index 0000000000000000000000000000000000000000..8a9ada44bc70adce7d4cda6cf69d85bba789ccc7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1858.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 1, + 26 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1859.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1859.json" new file mode 100644 index 0000000000000000000000000000000000000000..a5ee226531b491c60be2f7fca920e41a7bb89a5c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1859.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 9, + 99 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1860.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1860.json" new file mode 100644 index 0000000000000000000000000000000000000000..5b976e76c0cd2a7a68384d62659de41055bad711 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1860.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 95, + 13 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1861.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1861.json" new file mode 100644 index 0000000000000000000000000000000000000000..d06b2212f3c4555657685fa227242d28e6417e74 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1861.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 83, + 46 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1862.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1862.json" new file mode 100644 index 0000000000000000000000000000000000000000..d10fde79c8e10afc639607cb8a8f24d9cd6c42a3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1862.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 84, + 34 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1863.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1863.json" new file mode 100644 index 0000000000000000000000000000000000000000..296ad952a81af4b9d359379af3997c0c03c5698a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1863.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 62, + 91 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1864.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1864.json" new file mode 100644 index 0000000000000000000000000000000000000000..938ef4d654238264469139b33adbc779f9fb016b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1864.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 77, + 49 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1865.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1865.json" new file mode 100644 index 0000000000000000000000000000000000000000..2e55e0f45681db411f8c576d8117d861f96ffcd4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1865.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 67, + 54 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1866.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1866.json" new file mode 100644 index 0000000000000000000000000000000000000000..36f0cc3013297fe079ecaccb753995fbaf763a65 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1866.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 37, + 92 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1867.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1867.json" new file mode 100644 index 0000000000000000000000000000000000000000..4ad4111c69af8ae7fe94e4a012ee793dd35b230c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1867.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 50, + 92 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1868.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1868.json" new file mode 100644 index 0000000000000000000000000000000000000000..12863ddaf2141b06ea3f5c2f0f93190127e7bb9e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1868.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 45, + 65 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1869.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1869.json" new file mode 100644 index 0000000000000000000000000000000000000000..d96165df5c6dc6859a14266ac7aef3bd1c0c1274 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1869.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 36, + 55 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1870.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1870.json" new file mode 100644 index 0000000000000000000000000000000000000000..f5fca5d37ad6c5e5701f0380b18d0383a08c678f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1870.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 41, + 80 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1871.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1871.json" new file mode 100644 index 0000000000000000000000000000000000000000..51715e08873d6fe1ca67acb3e7b81d02e7662bc5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1871.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 31, + 5 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1872.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1872.json" new file mode 100644 index 0000000000000000000000000000000000000000..f77d6af46c19910719a7871cb1f59e541418b214 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1872.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 98, + 76 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1873.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1873.json" new file mode 100644 index 0000000000000000000000000000000000000000..9811224998fef9e897e0983527c5907b82b583ea --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1873.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 80, + 65 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1874.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1874.json" new file mode 100644 index 0000000000000000000000000000000000000000..e474791340f5b4a411bd141e41fbe966162cf40e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1874.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 31, + 80 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1875.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1875.json" new file mode 100644 index 0000000000000000000000000000000000000000..1b074b19f05f2ae510bd1965cc9eede293d52476 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1875.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 49, + 32 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1876.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1876.json" new file mode 100644 index 0000000000000000000000000000000000000000..1da6ee4fea7a1e7c9224795524a3a56f61c6165a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1876.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 5, + 14 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1877.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1877.json" new file mode 100644 index 0000000000000000000000000000000000000000..34ba2dd9d9b890d00b4dbc3ebb8cb3c1d93ded8b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1877.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 39, + 81 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1878.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1878.json" new file mode 100644 index 0000000000000000000000000000000000000000..67659a00ef995bb143c8d2521f80f753030b2763 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1878.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 21, + 15 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1879.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1879.json" new file mode 100644 index 0000000000000000000000000000000000000000..f28ddb06dcbc7f697697d38f8c05b6c30e2b458a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1879.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 50, + 98 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1880.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1880.json" new file mode 100644 index 0000000000000000000000000000000000000000..c4e936612f12aa10b033ee1a92a3560670192582 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1880.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 97, + 76 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1881.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1881.json" new file mode 100644 index 0000000000000000000000000000000000000000..9a79638b1872f165db45b7775bf6c6aa206ffe65 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1881.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 32, + 55 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1882.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1882.json" new file mode 100644 index 0000000000000000000000000000000000000000..a8a5271e545d44e143d975f559fd508cc4ea9b26 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1882.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 71, + 33 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1883.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1883.json" new file mode 100644 index 0000000000000000000000000000000000000000..2cd4f63a5f7c2ff5a52858c41fba879d0d46a4fc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1883.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 69, + 60 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1884.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1884.json" new file mode 100644 index 0000000000000000000000000000000000000000..16233711195226b043a48bf90cfecd2ca28ebb4c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1884.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 31, + 65 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1885.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1885.json" new file mode 100644 index 0000000000000000000000000000000000000000..b0be9a415b5bcd8e678c7462842a9ca96de0adae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1885.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 57, + 14 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1886.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1886.json" new file mode 100644 index 0000000000000000000000000000000000000000..8e4145fbe137d3c1af481f72c9bea0e66b7559f1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1886.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 77, + 45 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1887.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1887.json" new file mode 100644 index 0000000000000000000000000000000000000000..fcd458bb62936adbf05652a8ad9bdd73380b7d83 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1887.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 68, + 45 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1888.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1888.json" new file mode 100644 index 0000000000000000000000000000000000000000..af264d4efef6804d6236fc53f727333f022413f2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1888.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 60, + 41 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1889.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1889.json" new file mode 100644 index 0000000000000000000000000000000000000000..dd1061a0111aa1fe4719a655e1025822e347fd62 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1889.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 95, + 92 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1890.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1890.json" new file mode 100644 index 0000000000000000000000000000000000000000..0902306e9ce4909bcbe8963f7416e5699448ee07 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1890.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 87, + 51 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1891.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1891.json" new file mode 100644 index 0000000000000000000000000000000000000000..42e90f8954ba9d047b8313fa514d26ac394b9df6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1891.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 30, + 22 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1892.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1892.json" new file mode 100644 index 0000000000000000000000000000000000000000..b3153a5d4791a17f32c62c97b943618c821330c5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1892.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 47, + 89 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1893.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1893.json" new file mode 100644 index 0000000000000000000000000000000000000000..a3da28e9e420e3064ae3cca887f158a56b2b656f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1893.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 88, + 4 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1894.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1894.json" new file mode 100644 index 0000000000000000000000000000000000000000..e87810402a2bc88e1c39161e67627afe7b08baaa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1894.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 90, + 93 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1895.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1895.json" new file mode 100644 index 0000000000000000000000000000000000000000..b064359b5c9ae70cbbafaf00ff00f8ed22816577 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1895.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 60, + 46 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1896.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1896.json" new file mode 100644 index 0000000000000000000000000000000000000000..c7cda4051a73b8efb98eaf2d18e821f312a3d05c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1896.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 17, + 43 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1897.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1897.json" new file mode 100644 index 0000000000000000000000000000000000000000..5d6ee4537b9a7e82d11537ea1f28f6842d22f9ae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1897.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 50, + 33 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1898.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1898.json" new file mode 100644 index 0000000000000000000000000000000000000000..2c604c28e41ae27b529575ec2598735f758a6cb0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1898.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 2, + 20 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1899.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1899.json" new file mode 100644 index 0000000000000000000000000000000000000000..ff7a29812b79b5af7605b380ade01812efd3e76e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1899.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 58, + 92 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1900.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1900.json" new file mode 100644 index 0000000000000000000000000000000000000000..464d5ec08a1ec23163a907d197a5837da386c36b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1900.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 32, + 20 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1901.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1901.json" new file mode 100644 index 0000000000000000000000000000000000000000..b3a95b4958885773e8e9944399ccdd2ca62871db --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1901.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 87, + 72 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1902.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1902.json" new file mode 100644 index 0000000000000000000000000000000000000000..cedc583c0d0c0eb713fd35faf784f157bb77a323 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1902.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 57, + 41 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1903.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1903.json" new file mode 100644 index 0000000000000000000000000000000000000000..61878006435cd9dabf992b64d0596df0f4cfa9af --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1903.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 10, + 100 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1904.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1904.json" new file mode 100644 index 0000000000000000000000000000000000000000..2b179ad5383807be19a4f4a4e1d11fa0bb92f4ce --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1904.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 25, + 59 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1905.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1905.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac8eb68e6fe9f0592152d53a265dafee74b3e43f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1905.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 74, + 25 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1906.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1906.json" new file mode 100644 index 0000000000000000000000000000000000000000..5d4bd0fe43a895c6d95f43957ee3fa3e1b9edbbc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1906.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 67, + 46 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1907.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1907.json" new file mode 100644 index 0000000000000000000000000000000000000000..bb739420421daeb97ec8af9fa99551b2df7cf6ec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1907.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 88, + 45 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1908.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1908.json" new file mode 100644 index 0000000000000000000000000000000000000000..2b816b039005ea5ac1c7c27fba317a191243f065 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1908.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 81, + 50 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1909.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1909.json" new file mode 100644 index 0000000000000000000000000000000000000000..624342e2e6dccf3522892cecc96ce24fb45a9dfe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1909.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.3", + "shadow": "3.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 44, + 7 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1910.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1910.json" new file mode 100644 index 0000000000000000000000000000000000000000..6940478ec964a6473dac9eb8788440d6be22f37a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1910.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 96, + 33 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1911.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1911.json" new file mode 100644 index 0000000000000000000000000000000000000000..5867925dbbe3bc3ebc91e9145a2c9bae56f0ac7d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1911.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 79, + 22 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1912.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1912.json" new file mode 100644 index 0000000000000000000000000000000000000000..991ab348f397f161d6461598486fc605688f663d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1912.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 30, + 40 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1913.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1913.json" new file mode 100644 index 0000000000000000000000000000000000000000..ad77c95a9c47d1f6e07994e91b6b3eafdf2871e5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1913.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 80, + 15 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1914.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1914.json" new file mode 100644 index 0000000000000000000000000000000000000000..97502990a67b0f287df76d9cb8d2215cce5e3f16 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1914.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 18, + 55 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1915.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1915.json" new file mode 100644 index 0000000000000000000000000000000000000000..5f21558121adb9a1e45022a45873be98eaf715f0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1915.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 84, + 78 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1916.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1916.json" new file mode 100644 index 0000000000000000000000000000000000000000..34b520043dc5a45c29326e2a67749d0a9246afc9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1916.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 35, + 92 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1917.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1917.json" new file mode 100644 index 0000000000000000000000000000000000000000..5e3e7529fdb91c86019e8f671a52c9a92a1985c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1917.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 81, + 2 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1918.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1918.json" new file mode 100644 index 0000000000000000000000000000000000000000..043f2a8d2d256a9c46b57603d387558d405de380 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1918.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 62, + 95 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1919.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1919.json" new file mode 100644 index 0000000000000000000000000000000000000000..502383affa11ec016a7ae2649b7a3cd41a79eff7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1919.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 54, + 5 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1920.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1920.json" new file mode 100644 index 0000000000000000000000000000000000000000..4723260f23029fd76c9160b1c2bb2916db3192dd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1920.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 30, + 36 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1921.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1921.json" new file mode 100644 index 0000000000000000000000000000000000000000..b5336e51b5e85a889a2cd09d8297b8668f39acf9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1921.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 15, + 19 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1922.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1922.json" new file mode 100644 index 0000000000000000000000000000000000000000..eab1334ecf3a3b500f6488acbea919ad6392a940 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1922.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 89, + 83 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1923.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1923.json" new file mode 100644 index 0000000000000000000000000000000000000000..190b18c752995090ca6ad4dc39d098f11c67f248 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1923.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 70, + 35 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1924.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1924.json" new file mode 100644 index 0000000000000000000000000000000000000000..8fd724f09f9aa3a94172edfbdec624524f95e548 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1924.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 74, + 58 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1925.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1925.json" new file mode 100644 index 0000000000000000000000000000000000000000..52b137cfb8b857260bea70501c1569089aad2674 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1925.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 60, + 67 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1926.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1926.json" new file mode 100644 index 0000000000000000000000000000000000000000..501a8b84574bfe288b0f0d2ac1449177911b7353 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1926.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 60, + 82 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1927.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1927.json" new file mode 100644 index 0000000000000000000000000000000000000000..064d0788db9b81165867c37fabefc4c0f5c3824b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1927.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 19, + 97 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1928.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1928.json" new file mode 100644 index 0000000000000000000000000000000000000000..334b4441319170f8e565b19b5e6b2ed677b641fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1928.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 4, + 2 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1929.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1929.json" new file mode 100644 index 0000000000000000000000000000000000000000..29c3c4342d210588394ce7f2c717fb090d39aca0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1929.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 22, + 86 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1930.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1930.json" new file mode 100644 index 0000000000000000000000000000000000000000..2dfb46f34be194f459643d4227cbfd65ac4b9c05 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1930.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.0", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 13, + 22 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1931.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1931.json" new file mode 100644 index 0000000000000000000000000000000000000000..e4d9ea948f5980fe9f3019548242d003b0ee4755 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1931.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 93, + 44 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1932.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1932.json" new file mode 100644 index 0000000000000000000000000000000000000000..5d6727c93c3178c23d8df0266ca992ddcbb3d08d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1932.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playwrite DK Uloopet Guides", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 50, + 94 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1933.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1933.json" new file mode 100644 index 0000000000000000000000000000000000000000..7c5d65fd3e1b8231a35023006d1a6218d8752ef3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1933.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 88, + 5 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1934.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1934.json" new file mode 100644 index 0000000000000000000000000000000000000000..b98558d4b49590669d4f9db0131623911c1fe17f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1934.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 14, + 98 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1935.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1935.json" new file mode 100644 index 0000000000000000000000000000000000000000..04f750c9b0feafb8ee8f1a097c13c1c564c89af3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1935.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 41, + 4 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1936.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1936.json" new file mode 100644 index 0000000000000000000000000000000000000000..5a76b276b1cfb8993fe912ccc251c08b939c7d64 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1936.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 18, + 8 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1937.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1937.json" new file mode 100644 index 0000000000000000000000000000000000000000..8a72d00c29fa2c309d5aaaa2a333f61cd9e49f7f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1937.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 7, + 26 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1938.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1938.json" new file mode 100644 index 0000000000000000000000000000000000000000..ca52e203251fd8e2cd2a60016f7d5d1a24581c6f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1938.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.0", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 35, + 72 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1939.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1939.json" new file mode 100644 index 0000000000000000000000000000000000000000..5fe326ed7a01bf6613e647953e7fc00f9604d48d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1939.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 25, + 21 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1940.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1940.json" new file mode 100644 index 0000000000000000000000000000000000000000..a5e6181baf8e3b8a0ae6514f8e6dc7ed941528a6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1940.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 12, + 67 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1941.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1941.json" new file mode 100644 index 0000000000000000000000000000000000000000..ca5f6676e270c1c32da7a2491fb4438f370f071f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1941.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 66, + 80 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1942.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1942.json" new file mode 100644 index 0000000000000000000000000000000000000000..b2cdfcdf6f4d29a9639b1f1309df2eaaf3afec5a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1942.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 72, + 75 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1943.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1943.json" new file mode 100644 index 0000000000000000000000000000000000000000..65feab835adcb0fd7d5f7eac10a6acbc3ce56c75 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1943.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 91, + 42 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1944.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1944.json" new file mode 100644 index 0000000000000000000000000000000000000000..a1caf465720f485b49a21880caa61019844fd974 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1944.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 21, + 58 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1945.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1945.json" new file mode 100644 index 0000000000000000000000000000000000000000..1062d29fe052561f3be306425c552257968a7654 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1945.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 20, + 16 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1946.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1946.json" new file mode 100644 index 0000000000000000000000000000000000000000..fe1527cb02eb4207a1105f81b5f0606256f4cf6c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1946.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 66, + 25 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1947.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1947.json" new file mode 100644 index 0000000000000000000000000000000000000000..2f4ce417a387815dc234765ba73c88648eb7f312 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1947.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 10, + 68 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1948.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1948.json" new file mode 100644 index 0000000000000000000000000000000000000000..cbb9444d2efaadddf0e379d051bde4eced463848 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1948.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 40, + 49 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1949.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1949.json" new file mode 100644 index 0000000000000000000000000000000000000000..a2ebd1b20ab3468c9531ea299e0bb7c68482afa7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1949.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 91, + 87 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1950.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1950.json" new file mode 100644 index 0000000000000000000000000000000000000000..4b08ef3bad44369ff95aa04b432bf0eba8e19b41 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1950.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 69, + 0 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1951.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1951.json" new file mode 100644 index 0000000000000000000000000000000000000000..9b16f0b94cc99f92f136ab4879e74b0b0237ae11 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1951.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 42, + 19 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1952.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1952.json" new file mode 100644 index 0000000000000000000000000000000000000000..df63fc5f8c35512ba0e8c836446ef72c11b7acd6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1952.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.4", + "shadow": "3.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 30, + 48 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1953.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1953.json" new file mode 100644 index 0000000000000000000000000000000000000000..4171aaafbc10e5bb908c7da4862b56c2c9410ba5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1953.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 6, + 20 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1954.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1954.json" new file mode 100644 index 0000000000000000000000000000000000000000..887f047e06806fdaa618b429beca85ff934fdf19 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1954.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 82, + 44 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1955.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1955.json" new file mode 100644 index 0000000000000000000000000000000000000000..62a58d5df7035b8af42abb87d1664bf359885425 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1955.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 22, + 68 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1956.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1956.json" new file mode 100644 index 0000000000000000000000000000000000000000..69b151700eb93449b6ef788da7fc14966c00aad1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1956.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 99, + 89 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1957.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1957.json" new file mode 100644 index 0000000000000000000000000000000000000000..0ce7afca8ec9c3015212478e8ae508c8db0cca1b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1957.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 93, + 51 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1958.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1958.json" new file mode 100644 index 0000000000000000000000000000000000000000..a1c43fbf7558fcca4f9a9bb316ab63cea2ee9f28 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1958.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 58, + 85 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1959.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1959.json" new file mode 100644 index 0000000000000000000000000000000000000000..0d4c9d0ef81bdf7a27fb74dda9f614af2227b08f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1959.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 65, + 83 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1960.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1960.json" new file mode 100644 index 0000000000000000000000000000000000000000..932543b79ec1ab7d39d77a3403b3660740cdbd9f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1960.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 29, + 93 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1961.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1961.json" new file mode 100644 index 0000000000000000000000000000000000000000..baffa04076dea680ed002b65bb5ea62362ea3ef3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1961.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 97, + 62 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1962.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1962.json" new file mode 100644 index 0000000000000000000000000000000000000000..1e095e74d4129a34d9b8edb901f11fef94f4042c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1962.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 38, + 71 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1963.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1963.json" new file mode 100644 index 0000000000000000000000000000000000000000..57ca1695aa2a5f7ebd32f1a627f93c4722a75dab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1963.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 87, + 74 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1964.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1964.json" new file mode 100644 index 0000000000000000000000000000000000000000..379473f8e51a37d1b9558da87762044fc8b128d4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1964.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 12, + 3 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1965.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1965.json" new file mode 100644 index 0000000000000000000000000000000000000000..28188f9d8e43e22cc43586f23df61a85e0d0922a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1965.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 3, + 42 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1966.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1966.json" new file mode 100644 index 0000000000000000000000000000000000000000..42cac9620775c099e355e490cfc4899b2b22c7c7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1966.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 99, + 70 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1967.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1967.json" new file mode 100644 index 0000000000000000000000000000000000000000..7ce3a98007f48e7566fe08607e9024e929420ab8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1967.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 31, + 52 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1968.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1968.json" new file mode 100644 index 0000000000000000000000000000000000000000..ffa0f21a43435aa77f4237e7ccf0c572132efee2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1968.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 34, + 89 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1969.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1969.json" new file mode 100644 index 0000000000000000000000000000000000000000..1ac49fc2678f1655b9a7a359487f40d738a98fee --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1969.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 70, + 14 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1970.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1970.json" new file mode 100644 index 0000000000000000000000000000000000000000..3748aa08cabfde541e6100bc12e55b334f330483 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1970.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 49, + 92 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1971.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1971.json" new file mode 100644 index 0000000000000000000000000000000000000000..47d405ba6e0f6b0686d3db67086b821b75c73b40 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1971.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.1", + "shadow": "3.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 25, + 45 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1972.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1972.json" new file mode 100644 index 0000000000000000000000000000000000000000..795ad6c9b9a2ff7761b87f004dfb4670b5aa11b9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1972.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 99, + 29 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1973.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1973.json" new file mode 100644 index 0000000000000000000000000000000000000000..8c36902dbd7c9ef5d4d4bc20e1fd1c0bb1bfc107 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1973.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 33, + 59 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1974.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1974.json" new file mode 100644 index 0000000000000000000000000000000000000000..135e61ad937649b03644e472dcc66a307422106b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1974.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 41, + 49 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1975.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1975.json" new file mode 100644 index 0000000000000000000000000000000000000000..2a0d412e672a77023c3146e72a095dbe75200d74 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1975.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 35, + 9 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1976.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1976.json" new file mode 100644 index 0000000000000000000000000000000000000000..491feb1f491f1cc2af5d2b3a30a1baceedfeb08e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1976.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 2, + 16 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1977.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1977.json" new file mode 100644 index 0000000000000000000000000000000000000000..a593c044d8905f0b6fc07dec32cbf9452cb8da98 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1977.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 50, + 6 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1978.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1978.json" new file mode 100644 index 0000000000000000000000000000000000000000..9b9c99b394681a3bfbace0e7a5741985a3106a9a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1978.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 68, + 37 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1979.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1979.json" new file mode 100644 index 0000000000000000000000000000000000000000..194783724a0703eaf28bc25fcc4e2fcfaa610526 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1979.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 35, + 77 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1980.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1980.json" new file mode 100644 index 0000000000000000000000000000000000000000..ae5fac491b595f9a957d9d0b50dd6c7da1dce32a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1980.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 64, + 92 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1981.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1981.json" new file mode 100644 index 0000000000000000000000000000000000000000..ec49873d2e37f946987150c8b4616dec1f11f2ec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1981.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 18, + 47 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1982.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1982.json" new file mode 100644 index 0000000000000000000000000000000000000000..a7267614e6827a211db19c3f5e0ca1904117f338 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1982.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 33, + 18 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1983.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1983.json" new file mode 100644 index 0000000000000000000000000000000000000000..bcc53951590f4844f243ea721c8cc67b1aec6c7f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1983.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 82, + 39 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1984.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1984.json" new file mode 100644 index 0000000000000000000000000000000000000000..f757e626caf5743102d59cf4c3878668d2d2f06e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1984.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 72, + 0 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1985.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1985.json" new file mode 100644 index 0000000000000000000000000000000000000000..5125aca57e9adfff797178efa0f2c9fd4eb96191 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1985.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 18, + 33 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1986.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1986.json" new file mode 100644 index 0000000000000000000000000000000000000000..40aa081884b6cf7b750736d6fe595c38530ca14a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1986.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 78, + 86 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1987.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1987.json" new file mode 100644 index 0000000000000000000000000000000000000000..b9980e6640b6ff06442cf98852a04024aaaf08f4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1987.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 94, + 21 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1988.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1988.json" new file mode 100644 index 0000000000000000000000000000000000000000..56bbab4a97717f5a2b25e4944d12545102f4d278 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1988.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 11, + 68 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1989.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1989.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac904cfd4d5b8380a18b54d0ac8ae15838ef883c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1989.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 93, + 25 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1990.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1990.json" new file mode 100644 index 0000000000000000000000000000000000000000..02c6475b85034f19d40fe0da827c96424f89c3a0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1990.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 58, + 75 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1991.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1991.json" new file mode 100644 index 0000000000000000000000000000000000000000..43108fa22644aba96b1d95a1fbf69f7ac2926870 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1991.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 26, + 11 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1992.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1992.json" new file mode 100644 index 0000000000000000000000000000000000000000..100de481f51a652ca3d1a4c174b26f00e97f96a4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1992.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 26, + 26 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1993.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1993.json" new file mode 100644 index 0000000000000000000000000000000000000000..844353b7f06a71bdc1332611bf00e0055016a4f9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1993.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 21, + 85 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1994.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1994.json" new file mode 100644 index 0000000000000000000000000000000000000000..191905edd4ad7637d6441a2959dcdad4767236ab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1994.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 36, + 48 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1995.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1995.json" new file mode 100644 index 0000000000000000000000000000000000000000..7c1b588d6110389b40bef4f8c40fc3459e0a03a0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1995.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 41, + 97 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1996.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1996.json" new file mode 100644 index 0000000000000000000000000000000000000000..8eedf6c1b336a9d2f0ab7964b7afb49e1dcf6c5b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1996.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 11, + 99 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1997.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1997.json" new file mode 100644 index 0000000000000000000000000000000000000000..2b87a294f94c8d24d6277ff5345b89d2bdbedfc5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1997.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 49, + 69 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1998.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1998.json" new file mode 100644 index 0000000000000000000000000000000000000000..2c18cc8ab6b36d02c74620d24585fbe65e7ded04 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1998.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 62, + 72 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1999.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1999.json" new file mode 100644 index 0000000000000000000000000000000000000000..111ff8d62ec06decd63a6f73695fc0cc11351af9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_1999.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 11, + 18 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2000.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2000.json" new file mode 100644 index 0000000000000000000000000000000000000000..98ef9b9b9ab59360eef7d7a94d3b398acac15a98 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2000.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 12, + 59 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2001.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2001.json" new file mode 100644 index 0000000000000000000000000000000000000000..2b7c992718fc3fe5d018932193c4f2e94fef829d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2001.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 23, + 5 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2002.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2002.json" new file mode 100644 index 0000000000000000000000000000000000000000..12bb9af06516c9df127046067f234bb8ba5b7dc8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2002.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 77, + 17 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2003.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2003.json" new file mode 100644 index 0000000000000000000000000000000000000000..84819e4d26e51ed0fdab7ade433e599ddb575591 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2003.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 53, + 55 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2004.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2004.json" new file mode 100644 index 0000000000000000000000000000000000000000..64cc9ce524d7584343423ba078e4deaf374ba1f8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2004.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 24, + 87 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2005.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2005.json" new file mode 100644 index 0000000000000000000000000000000000000000..ea938736d80a25398d00747a292854a387952632 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2005.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 94, + 64 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2006.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2006.json" new file mode 100644 index 0000000000000000000000000000000000000000..07c700708432263a63d5f378efd67bc90320a3cf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2006.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 99, + 75 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2007.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2007.json" new file mode 100644 index 0000000000000000000000000000000000000000..f0021c264901985fdfb44fa8c45bd603a6813ef3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2007.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 13, + 70 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2008.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2008.json" new file mode 100644 index 0000000000000000000000000000000000000000..12c4e190e0c1c7ed32815a00f47006e66a8bf127 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2008.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 91, + 25 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2009.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2009.json" new file mode 100644 index 0000000000000000000000000000000000000000..e122d1c4c7ce12765b90a296aa8dc874e77dc47c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2009.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 92, + 65 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2010.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2010.json" new file mode 100644 index 0000000000000000000000000000000000000000..f9d5b9cdd38effa8b0752cd65f856e1f9b962fcb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2010.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 3, + 93 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2011.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2011.json" new file mode 100644 index 0000000000000000000000000000000000000000..500e78e6cb76961995d39516e5c4112cc454655b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2011.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 8, + 24 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2012.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2012.json" new file mode 100644 index 0000000000000000000000000000000000000000..d4356571eee02870d34845d7565d07f2626ec243 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2012.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 46, + 61 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2013.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2013.json" new file mode 100644 index 0000000000000000000000000000000000000000..eccad74e7abb624dd8fe05a2d8d3c709fcd0778b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2013.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 61, + 45 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2014.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2014.json" new file mode 100644 index 0000000000000000000000000000000000000000..b73ea0c3d62694334bcda707d36f4021261f1d7b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2014.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 7, + 100 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2015.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2015.json" new file mode 100644 index 0000000000000000000000000000000000000000..79ca6b32bef16ee18453d4b7bedfbb538738403e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2015.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 52, + 55 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2016.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2016.json" new file mode 100644 index 0000000000000000000000000000000000000000..806385b03074d879ce06484e7a6f623aa722af5f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2016.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 82, + 6 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2017.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2017.json" new file mode 100644 index 0000000000000000000000000000000000000000..ab538177f161365b0b6c2b27960365de11a190d5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2017.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 55, + 98 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2018.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2018.json" new file mode 100644 index 0000000000000000000000000000000000000000..b9228edd9d126418978501a4053193575e00959e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2018.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 46, + 81 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2019.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2019.json" new file mode 100644 index 0000000000000000000000000000000000000000..8651123902b855385cda0f4804909dd6f9bd3ea6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2019.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 76, + 60 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2020.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2020.json" new file mode 100644 index 0000000000000000000000000000000000000000..9fd211b27cca4695e8795d5e4f51f2f646d3d80a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2020.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 99, + 79 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2021.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2021.json" new file mode 100644 index 0000000000000000000000000000000000000000..f65bb6cfb7a8c3eb30bdf9aed35d5e8198f686f9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2021.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 62, + 0 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2022.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2022.json" new file mode 100644 index 0000000000000000000000000000000000000000..488c0a79facf17cefb8a6d3cb5054ebd7e280b9b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2022.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 79, + 27 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2023.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2023.json" new file mode 100644 index 0000000000000000000000000000000000000000..02802a8364a18066c0dedf420991c5144400b621 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2023.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 94, + 59 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2024.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2024.json" new file mode 100644 index 0000000000000000000000000000000000000000..d9f937eb789dfb9de88c38af37dd42174917bc87 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2024.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 12, + 45 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2025.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2025.json" new file mode 100644 index 0000000000000000000000000000000000000000..e64f72370645c12eb0394eeff547a1d16ebcc9c0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2025.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 53, + 2 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2026.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2026.json" new file mode 100644 index 0000000000000000000000000000000000000000..668beee688718477fef0db9e1f246be466eea941 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2026.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 89, + 89 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2027.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2027.json" new file mode 100644 index 0000000000000000000000000000000000000000..9bf79ab433bf6541ff938da72ebfa0d7da4ce644 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2027.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 81, + 42 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2028.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2028.json" new file mode 100644 index 0000000000000000000000000000000000000000..91711b82383cdcf2c61c64a4198fb5a3bd5c6f38 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2028.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 50, + 88 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2029.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2029.json" new file mode 100644 index 0000000000000000000000000000000000000000..9564aec3677bc4a882b4eace020487e74fe499ae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2029.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 36, + 32 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2030.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2030.json" new file mode 100644 index 0000000000000000000000000000000000000000..4526b90932cb7bfce2d90de59f0450cc3f8ae4b7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2030.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 10, + 50 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2031.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2031.json" new file mode 100644 index 0000000000000000000000000000000000000000..5f95176b33954b24fae9de631ee8bbede30c0f24 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2031.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Padauk", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 87, + 46 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2032.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2032.json" new file mode 100644 index 0000000000000000000000000000000000000000..030b476df34a844122c90cb70e42562dd238e936 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2032.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 100, + 24 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2033.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2033.json" new file mode 100644 index 0000000000000000000000000000000000000000..90a65162b5cfff2ca5173f68f6b6b078bd679048 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2033.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 33, + 96 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2034.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2034.json" new file mode 100644 index 0000000000000000000000000000000000000000..826f786173203d76431d48bf6723b8e0f295170d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2034.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 67, + 43 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2035.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2035.json" new file mode 100644 index 0000000000000000000000000000000000000000..c47700a6b02e68e4bd21a8df9404950069c32f49 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2035.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 81, + 31 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2036.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2036.json" new file mode 100644 index 0000000000000000000000000000000000000000..8adeb5cea79e65631f7ec652b88ee3dd58cf2765 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2036.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 89, + 49 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2037.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2037.json" new file mode 100644 index 0000000000000000000000000000000000000000..984526dccb2586fc7b2cc0330efaa1c337933064 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2037.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 5, + 90 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2038.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2038.json" new file mode 100644 index 0000000000000000000000000000000000000000..6420291c0aab8844479908cc770133fe983052b1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2038.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 50, + 82 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2039.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2039.json" new file mode 100644 index 0000000000000000000000000000000000000000..4b218f0d68b797447e06c28f199c86cd5b4dec26 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2039.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 74, + 35 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2040.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2040.json" new file mode 100644 index 0000000000000000000000000000000000000000..cf6163140cf8fc927059b6b47f270c547d565811 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2040.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 85, + 69 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2041.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2041.json" new file mode 100644 index 0000000000000000000000000000000000000000..fccfa71e1f8b63fadede5018afa8fe8149eabada --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2041.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 65, + 76 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2042.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2042.json" new file mode 100644 index 0000000000000000000000000000000000000000..7e16ffaf7f24dc55d5cf0ca073d1b5ef1ba9b6da --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2042.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 34, + 90 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2043.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2043.json" new file mode 100644 index 0000000000000000000000000000000000000000..687693f14c03e7321e7aabac2033ea2b6a8dec82 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2043.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 77, + 22 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2044.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2044.json" new file mode 100644 index 0000000000000000000000000000000000000000..2d98e9bbcb6d2d39975c97fb8a5c14cbe9aa37db --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2044.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 9, + 61 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2045.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2045.json" new file mode 100644 index 0000000000000000000000000000000000000000..f824e6ed12d8ddb1f57ac0560d3b2bff77abaca3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2045.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 11, + 16 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2046.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2046.json" new file mode 100644 index 0000000000000000000000000000000000000000..89d05485dda1d0c7f5819e88d296d276852da231 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2046.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 47, + 24 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2047.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2047.json" new file mode 100644 index 0000000000000000000000000000000000000000..bfd92f89771a8e3e214c3f1c12a2e651fa7f8101 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2047.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 62, + 97 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2048.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2048.json" new file mode 100644 index 0000000000000000000000000000000000000000..e8eb943fceba5a1c69feb125931e97fd23e9e8f7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2048.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 27, + 6 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2049.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2049.json" new file mode 100644 index 0000000000000000000000000000000000000000..690484be3aea1491e2fb1dea470d2511dd341743 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2049.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 66, + 93 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2050.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2050.json" new file mode 100644 index 0000000000000000000000000000000000000000..4244ee06e8b3b7843453f084e69cf032f5a029f4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2050.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 75, + 10 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2051.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2051.json" new file mode 100644 index 0000000000000000000000000000000000000000..2a271597438c714b0fd6ba16314f2a2f445e6189 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2051.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 22, + 74 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2052.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2052.json" new file mode 100644 index 0000000000000000000000000000000000000000..2a1f64b660ce4f79d4d0a0c1a794343c95410d9f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2052.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 80, + 75 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2053.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2053.json" new file mode 100644 index 0000000000000000000000000000000000000000..6f5a36063f640f3761777683edbc5d37b5bb8f0e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2053.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 51, + 56 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2054.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2054.json" new file mode 100644 index 0000000000000000000000000000000000000000..ef0d80e9b55610b7c172d4eda820338934caf108 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2054.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 44, + 2 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2055.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2055.json" new file mode 100644 index 0000000000000000000000000000000000000000..40af18ce46e58f718dec73e55f9027f4dd13817c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2055.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 92, + 3 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2056.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2056.json" new file mode 100644 index 0000000000000000000000000000000000000000..c8f3a87c5cd05642a485e9a6f3b8593eabbeced4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2056.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 45, + 27 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2057.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2057.json" new file mode 100644 index 0000000000000000000000000000000000000000..4dfffd061834ee99ff40bcf07c770acbb5efdfa4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2057.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 62, + 35 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2058.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2058.json" new file mode 100644 index 0000000000000000000000000000000000000000..1b65686905eac30c63f1f84049fec0d3abd2784f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2058.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 31, + 8 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2059.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2059.json" new file mode 100644 index 0000000000000000000000000000000000000000..b982b37dee0a334608a62e1d280c7e41cd23744e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2059.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 54, + 37 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2060.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2060.json" new file mode 100644 index 0000000000000000000000000000000000000000..b92b206ec6b788ffe87cd31e23ca51e4f45da003 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2060.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 8, + 1 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2061.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2061.json" new file mode 100644 index 0000000000000000000000000000000000000000..ab719c2c4609df6eb2f1e87fea61cb2d4bfcbf4e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2061.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 96, + 5 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2062.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2062.json" new file mode 100644 index 0000000000000000000000000000000000000000..f612c681c8e328171d5dc632432a14f3bda46676 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2062.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 86, + 62 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2063.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2063.json" new file mode 100644 index 0000000000000000000000000000000000000000..39c5b54d61b86a64beb499fd5a6408558f651420 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2063.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 22, + 34 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2064.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2064.json" new file mode 100644 index 0000000000000000000000000000000000000000..5856e453ded82077eb3767b9f3f074ba65ad16e1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2064.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 75, + 51 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2065.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2065.json" new file mode 100644 index 0000000000000000000000000000000000000000..adb277f857603c342bce5cd184c2e2dabf355929 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2065.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 66, + 33 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2066.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2066.json" new file mode 100644 index 0000000000000000000000000000000000000000..25af88c18226f2b960066e5aeeef5e24641860c8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2066.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 56, + 40 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2067.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2067.json" new file mode 100644 index 0000000000000000000000000000000000000000..c7db04810795e4c678545d8f813e4740ef73bce1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2067.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 12, + 42 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2068.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2068.json" new file mode 100644 index 0000000000000000000000000000000000000000..25a7098a6df75402bfda4ee7c782880f4c032cd2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2068.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 64, + 60 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2069.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2069.json" new file mode 100644 index 0000000000000000000000000000000000000000..cd2f9d25981f5e014305aa950271055643f528e1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2069.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 56, + 73 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2070.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2070.json" new file mode 100644 index 0000000000000000000000000000000000000000..349a42cb5c531ae7523dcbeebaca6f3646b6fa05 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2070.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 10, + 26 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2071.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2071.json" new file mode 100644 index 0000000000000000000000000000000000000000..120881630beeefb9045dbb6fb35775286091d6fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2071.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "3.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 89, + 30 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2072.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2072.json" new file mode 100644 index 0000000000000000000000000000000000000000..bb5ccbe050218a699fbf239adb0d0df317ef7bea --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2072.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 93, + 10 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2073.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2073.json" new file mode 100644 index 0000000000000000000000000000000000000000..6754ff3e3aef7cb133ef02147a72a40a1d5c06f0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2073.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 69, + 61 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2074.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2074.json" new file mode 100644 index 0000000000000000000000000000000000000000..cb6330783b8d0827a20d15cb97c4d3b6c0346fab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2074.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 6, + 4 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2075.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2075.json" new file mode 100644 index 0000000000000000000000000000000000000000..ee29dc28df3a74efbf7a54fe5f3638517cd0b13f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2075.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 57, + 32 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2076.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2076.json" new file mode 100644 index 0000000000000000000000000000000000000000..b0dde2b83939e493cfd967909d547292468be7cb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2076.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 52, + 37 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2077.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2077.json" new file mode 100644 index 0000000000000000000000000000000000000000..464b6cfbbc0a2e8b756a5af54755a2650af71b89 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2077.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 73, + 9 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2078.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2078.json" new file mode 100644 index 0000000000000000000000000000000000000000..4563de761bda5fea5e2a820536b7d6e5b580b615 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2078.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 95, + 33 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2079.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2079.json" new file mode 100644 index 0000000000000000000000000000000000000000..f3af3f9555f6f5030ed4ee1f735b43af18223c8b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2079.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 36, + 17 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2080.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2080.json" new file mode 100644 index 0000000000000000000000000000000000000000..2955035cc9977f44175edc0f3a12572d728c7e76 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2080.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 52, + 0 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2081.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2081.json" new file mode 100644 index 0000000000000000000000000000000000000000..b1130dc754161fadc6321b177666e470b9e1495c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2081.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 39, + 33 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2082.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2082.json" new file mode 100644 index 0000000000000000000000000000000000000000..18e9a1fb2153c438fe2da50cc7c13d0ae4135f80 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2082.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 55, + 66 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2083.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2083.json" new file mode 100644 index 0000000000000000000000000000000000000000..7c4f59de245ce70efd38de902be339fee3b3cbc9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2083.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 24, + 16 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2084.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2084.json" new file mode 100644 index 0000000000000000000000000000000000000000..8470b8a8bfa5219edac48093877ebc4efaa92783 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2084.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 74, + 31 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2085.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2085.json" new file mode 100644 index 0000000000000000000000000000000000000000..b0aca7303f2bef16a8143b04c945e3130d268caf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2085.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 20, + 35 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2086.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2086.json" new file mode 100644 index 0000000000000000000000000000000000000000..2fdbd5a591436a9b0cd74f54d54a46e105ea1d3d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2086.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 50, + 9 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2087.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2087.json" new file mode 100644 index 0000000000000000000000000000000000000000..c90c677b68268383f77663078c4f1887793d92d7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2087.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 96, + 76 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2088.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2088.json" new file mode 100644 index 0000000000000000000000000000000000000000..de27555266c0fed54c093dbdfced58514a4fbb35 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2088.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 18, + 0 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2089.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2089.json" new file mode 100644 index 0000000000000000000000000000000000000000..bfadc9408b13983427142aedd81799039ad7346a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2089.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 100, + 68 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2090.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2090.json" new file mode 100644 index 0000000000000000000000000000000000000000..c9b1c9e922465541e7beb921e848dd094b5bf97a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2090.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 50, + 0 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2091.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2091.json" new file mode 100644 index 0000000000000000000000000000000000000000..cf5bb012c6e6030468b9e13fa356f0fc4524f50e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2091.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 81, + 83 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2092.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2092.json" new file mode 100644 index 0000000000000000000000000000000000000000..4b8ed5440c1a795d6f0855d91ddd6953883c1b80 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2092.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 23, + 2 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2093.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2093.json" new file mode 100644 index 0000000000000000000000000000000000000000..fb1d897d47d4e3c01e211f3402d8dbbb1973d397 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2093.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 23, + 79 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2094.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2094.json" new file mode 100644 index 0000000000000000000000000000000000000000..15a104df72faf7d33d09afe9361e0f1ff1f822bb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2094.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 83, + 74 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2095.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2095.json" new file mode 100644 index 0000000000000000000000000000000000000000..2c387345cd20ab8489d59b71707748036a003199 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2095.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 15, + 100 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2096.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2096.json" new file mode 100644 index 0000000000000000000000000000000000000000..074c654324710dd4e69138a8e5cdfabf99e0d8ce --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2096.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 22, + 85 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2097.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2097.json" new file mode 100644 index 0000000000000000000000000000000000000000..e76ed695553c378c1efd976e65a602f02b84dac7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2097.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 82, + 64 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2098.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2098.json" new file mode 100644 index 0000000000000000000000000000000000000000..5da64d7da093c35c5db37c26a71d8b4e06c05380 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2098.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 34, + 25 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2099.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2099.json" new file mode 100644 index 0000000000000000000000000000000000000000..b158c5761991bbecf66a71c685dbda166bbcdb65 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2099.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 51, + 1 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2100.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2100.json" new file mode 100644 index 0000000000000000000000000000000000000000..e63cd6e790ed01e9daac0c6cd52b37d217d51e04 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2100.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 18, + 96 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2101.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2101.json" new file mode 100644 index 0000000000000000000000000000000000000000..0deb4caf28842334f3f8a47a2e9400ce6f559745 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2101.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 12, + 80 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2102.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2102.json" new file mode 100644 index 0000000000000000000000000000000000000000..773f49ae51429d0f945b8a7b55eb621b81741a15 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2102.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 10, + 24 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2103.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2103.json" new file mode 100644 index 0000000000000000000000000000000000000000..4ebb8c5cea9e9fd0b25b7126f5d1d4b5099e4f8c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2103.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 68, + 65 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2104.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2104.json" new file mode 100644 index 0000000000000000000000000000000000000000..0bc990d112aa76fc2660bcce656440aebaffb099 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2104.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 70, + 48 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2105.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2105.json" new file mode 100644 index 0000000000000000000000000000000000000000..473546feacb250026519af497022ef9ed32211b0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2105.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 3, + 30 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2106.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2106.json" new file mode 100644 index 0000000000000000000000000000000000000000..c7b0e1fcce2653a9e0e404dbb0010079638980cd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2106.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 5, + 21 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2107.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2107.json" new file mode 100644 index 0000000000000000000000000000000000000000..5be9f8cd28257553f651f347ab22383208b04a3c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2107.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 32, + 64 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2108.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2108.json" new file mode 100644 index 0000000000000000000000000000000000000000..52c508ee080dc175be0323d9a6c60890ca29b87a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2108.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 38, + 15 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2109.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2109.json" new file mode 100644 index 0000000000000000000000000000000000000000..a2a354fd9a00c5e1707063915e4c3e84756aad5f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2109.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 48, + 68 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2110.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2110.json" new file mode 100644 index 0000000000000000000000000000000000000000..dacc39516bfcece51aaad9be197578a0957d48d3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2110.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 74, + 32 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2111.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2111.json" new file mode 100644 index 0000000000000000000000000000000000000000..5c69109bab977de1f662659a96dbed367005177e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2111.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 59, + 43 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2112.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2112.json" new file mode 100644 index 0000000000000000000000000000000000000000..e9036002eaf26f728b449dfe6ffd3078962f5599 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2112.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 83, + 5 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2113.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2113.json" new file mode 100644 index 0000000000000000000000000000000000000000..62a7b34d1874553400840358b58348a6cb7250fd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2113.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 32, + 0 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2114.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2114.json" new file mode 100644 index 0000000000000000000000000000000000000000..f466526a1216efecbc92acd4f9a0b4ece718dd46 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2114.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 3, + 55 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2115.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2115.json" new file mode 100644 index 0000000000000000000000000000000000000000..877c40c20d32460ce118e5046d9ea53d499c20da --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2115.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 90, + 31 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2116.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2116.json" new file mode 100644 index 0000000000000000000000000000000000000000..c359675e5a5643f9b98fc1b048b7f68aa9adeb75 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2116.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 83, + 16 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2117.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2117.json" new file mode 100644 index 0000000000000000000000000000000000000000..15df044079c5c6d25bdea714543c4f97125841d8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2117.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 64, + 69 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2118.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2118.json" new file mode 100644 index 0000000000000000000000000000000000000000..df4ecbb55319bc8f395d1533207d4e104a4b7b75 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2118.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 30, + 55 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2119.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2119.json" new file mode 100644 index 0000000000000000000000000000000000000000..4a4869c9ba25cd2dacfada951cf20bf12090ae69 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2119.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 39, + 82 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2120.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2120.json" new file mode 100644 index 0000000000000000000000000000000000000000..fd5f30216dbbb98abfaeee2558efbfb55ade4a44 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2120.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 24, + 56 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2121.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2121.json" new file mode 100644 index 0000000000000000000000000000000000000000..e9cd8fe5b84f895c85e8655c50b320269c42165e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2121.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 6, + 17 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2122.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2122.json" new file mode 100644 index 0000000000000000000000000000000000000000..6c095b65b710d476f400656151a6f04dc1ad9867 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2122.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 1, + 84 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2123.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2123.json" new file mode 100644 index 0000000000000000000000000000000000000000..4adc547be3aec903ecf5dfd8a024f75b55902fbc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2123.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 69, + 81 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2124.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2124.json" new file mode 100644 index 0000000000000000000000000000000000000000..e209f9a48dfb1dc85ee56381543d5f54d38ad749 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2124.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 74, + 36 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2125.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2125.json" new file mode 100644 index 0000000000000000000000000000000000000000..42d195f6fbb31a58964797541c371d9026c4f2ec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2125.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 77, + 54 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2126.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2126.json" new file mode 100644 index 0000000000000000000000000000000000000000..96ab71343e7b092dcce3ecabc104b6393ff92379 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2126.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 43, + 78 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2127.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2127.json" new file mode 100644 index 0000000000000000000000000000000000000000..b7a71cb48be39655af47189336fa36a2a9a6db1e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2127.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 83, + 15 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2128.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2128.json" new file mode 100644 index 0000000000000000000000000000000000000000..e47955963f14fa744e85d6df72e9c8f750df8c82 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2128.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 64, + 89 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2129.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2129.json" new file mode 100644 index 0000000000000000000000000000000000000000..29d17a912474ea033544eb312da1bb3bf1933d82 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2129.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 95, + 94 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2130.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2130.json" new file mode 100644 index 0000000000000000000000000000000000000000..9e47b017fc681375b0c63a5e0185638f3d812a99 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2130.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 79, + 25 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2131.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2131.json" new file mode 100644 index 0000000000000000000000000000000000000000..9870397d30aa31a3983eff66bca75d7bf1ef49a1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2131.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 49, + 20 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2132.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2132.json" new file mode 100644 index 0000000000000000000000000000000000000000..ec237ea6c41dc922edf1c8199a69ef7aef9c5bbd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2132.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 64, + 27 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2133.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2133.json" new file mode 100644 index 0000000000000000000000000000000000000000..d84296e5b0403c726a3559d6f5ba88951e368d59 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2133.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 86, + 25 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2134.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2134.json" new file mode 100644 index 0000000000000000000000000000000000000000..8417fe35eb00605682cab37e7c217c3c259f3f94 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2134.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 13, + 51 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2135.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2135.json" new file mode 100644 index 0000000000000000000000000000000000000000..d0de8f1cf4d1f27a47f3f860293faacc196dc61d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2135.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 76, + 11 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2136.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2136.json" new file mode 100644 index 0000000000000000000000000000000000000000..83d7c22773f2c28d99c58d6e32ac276cff5750df --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2136.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 24, + 98 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2137.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2137.json" new file mode 100644 index 0000000000000000000000000000000000000000..87f034d172850a2b29a3e670d841c295f4dbad45 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2137.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 71, + 29 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2138.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2138.json" new file mode 100644 index 0000000000000000000000000000000000000000..cc7adf49e3aea9cbb84d90c788a40974abe79fba --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2138.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 52, + 90 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2139.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2139.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f8721917b187c45547ff1dcdc463968b95cedfb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2139.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 38, + 79 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2140.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2140.json" new file mode 100644 index 0000000000000000000000000000000000000000..1f192d94d5146db57760f08729f4f9e756ccd3b5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2140.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 67, + 2 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2141.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2141.json" new file mode 100644 index 0000000000000000000000000000000000000000..7d81a69b0648cfa7a1e2cb4a58601df27f716348 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2141.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 31, + 53 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2142.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2142.json" new file mode 100644 index 0000000000000000000000000000000000000000..2061730bcfc965bb55e7c19cdb0d9bcb0dfa6226 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2142.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 31, + 96 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2143.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2143.json" new file mode 100644 index 0000000000000000000000000000000000000000..58914d73366fb0e00fc5e241e54ba1cf86645638 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2143.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 64, + 96 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2144.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2144.json" new file mode 100644 index 0000000000000000000000000000000000000000..b0951d3b21beba33f44a0efb5bff241ccba09097 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2144.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "3.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 33, + 84 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2145.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2145.json" new file mode 100644 index 0000000000000000000000000000000000000000..c8b9de8feac0425ad660f96868718872449c7d5e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2145.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 27, + 3 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2146.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2146.json" new file mode 100644 index 0000000000000000000000000000000000000000..411e77d67627ed11c6926c1f0cf6cfed9b7a56c9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2146.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 73, + 100 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2147.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2147.json" new file mode 100644 index 0000000000000000000000000000000000000000..e3161a0b72307c5252334e5d3622d4477581ce27 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2147.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 80, + 70 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2148.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2148.json" new file mode 100644 index 0000000000000000000000000000000000000000..d9bf38c324ddd8765ab8d9c2e45ce54cf1d1c26a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2148.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 34, + 9 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2149.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2149.json" new file mode 100644 index 0000000000000000000000000000000000000000..d3a7bbf0c3ccf961bfeeff68d1f20f08d69b37f6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2149.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 67, + 58 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2150.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2150.json" new file mode 100644 index 0000000000000000000000000000000000000000..528cb2586f93f4500ceaef7d23d7897a1a8e8c6c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2150.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 83, + 79 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2151.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2151.json" new file mode 100644 index 0000000000000000000000000000000000000000..740446e7a261799e707fe1d2de2bafdce813f55b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2151.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 95, + 28 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2152.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2152.json" new file mode 100644 index 0000000000000000000000000000000000000000..7ea39badd16cda64230374b8fb701de9e5f6c223 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2152.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 56, + 59 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2153.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2153.json" new file mode 100644 index 0000000000000000000000000000000000000000..1e1e5413af91f7813ff39f335c10834a922a88fa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2153.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 60, + 4 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2154.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2154.json" new file mode 100644 index 0000000000000000000000000000000000000000..b1aa6b7602ef0a2224ddb6fbdf1027838ba9a790 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2154.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 83, + 61 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2155.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2155.json" new file mode 100644 index 0000000000000000000000000000000000000000..73ac8c71cc11355a4b3cbe33f68550d176d5f055 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2155.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 43, + 97 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2156.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2156.json" new file mode 100644 index 0000000000000000000000000000000000000000..249f08ddcc88f29c56a54f6dd0d6dfba7bfda472 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2156.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 49, + 96 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2157.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2157.json" new file mode 100644 index 0000000000000000000000000000000000000000..2e3bfa94dc70ca9941acd4fb60c41d4d7b670d2d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2157.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 70, + 44 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2158.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2158.json" new file mode 100644 index 0000000000000000000000000000000000000000..e57828764ec381fbbb27e17d403bc01b8353de2c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2158.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 51, + 43 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2159.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2159.json" new file mode 100644 index 0000000000000000000000000000000000000000..957f400e15a85095231559814aca4812ba45c342 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2159.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 61, + 26 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2160.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2160.json" new file mode 100644 index 0000000000000000000000000000000000000000..e360d2ac9f93c803ebfe9d305af14b30ba783ffe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2160.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 32, + 87 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2161.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2161.json" new file mode 100644 index 0000000000000000000000000000000000000000..a4881b6ae7a5e05876d5d32b960d5ff590d6674a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2161.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 43, + 23 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2162.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2162.json" new file mode 100644 index 0000000000000000000000000000000000000000..e0b5d752884dee5c62c577fe3e8888593d2279f9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2162.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.0", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 6, + 78 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2163.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2163.json" new file mode 100644 index 0000000000000000000000000000000000000000..543af7ef988f49a3cbd60d1630d688e137825932 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2163.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 15, + 22 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2164.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2164.json" new file mode 100644 index 0000000000000000000000000000000000000000..7dda103fedddd7ca25a53fe303621b6df386060f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2164.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 73, + 97 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2165.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2165.json" new file mode 100644 index 0000000000000000000000000000000000000000..c920f63917c78cb631ee9ccd07a3d66d68867314 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2165.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 21, + 32 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2166.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2166.json" new file mode 100644 index 0000000000000000000000000000000000000000..27b004d26eb262db17a4cd5c80d19bb64fb67b11 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2166.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 87, + 81 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2167.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2167.json" new file mode 100644 index 0000000000000000000000000000000000000000..30bffb489e57f988282481babb57a41e48c28299 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2167.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 97, + 57 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2168.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2168.json" new file mode 100644 index 0000000000000000000000000000000000000000..6b3f31d4b56992151da830ad6ad8d6412370f15c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2168.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 11, + 99 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2169.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2169.json" new file mode 100644 index 0000000000000000000000000000000000000000..bf59c3e09d46a40f63481db3c7ac71c480cb12d2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2169.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 19, + 59 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2170.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2170.json" new file mode 100644 index 0000000000000000000000000000000000000000..5454580c1147d60e28c9475ba204533e12a795c0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2170.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 33, + 10 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2171.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2171.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f676e1ccce0e5db815ebd3502dd3a936bb0ac5b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2171.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 88, + 40 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2172.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2172.json" new file mode 100644 index 0000000000000000000000000000000000000000..6911546fd84aeaa8a9d39bd84436b29d1cd70684 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2172.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 40, + 74 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2173.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2173.json" new file mode 100644 index 0000000000000000000000000000000000000000..100e16af721888dd907ab2a027ab5ea621259f87 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2173.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 90, + 96 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2174.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2174.json" new file mode 100644 index 0000000000000000000000000000000000000000..94fe4948f0ab231336296fe3cbdc366f09af4ef1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2174.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 15, + 74 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2175.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2175.json" new file mode 100644 index 0000000000000000000000000000000000000000..a0c468abdfce44dd0c55015f8f6ee628c8528fe8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2175.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 24, + 50 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2176.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2176.json" new file mode 100644 index 0000000000000000000000000000000000000000..de52a2d57ceec86d4ef448e4c1cfc2cecbe763a3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2176.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 93, + 60 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2177.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2177.json" new file mode 100644 index 0000000000000000000000000000000000000000..c44510e74ecfb486be3c7c9b002eb151c91315c7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2177.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 63, + 69 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2178.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2178.json" new file mode 100644 index 0000000000000000000000000000000000000000..6c639ae93e83dce2ba38826802f2ce7d67c07395 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2178.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 8, + 4 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2179.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2179.json" new file mode 100644 index 0000000000000000000000000000000000000000..8e9c2a3327f5cd7d4b99901a94e4f463eabfd12b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2179.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 53, + 32 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2180.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2180.json" new file mode 100644 index 0000000000000000000000000000000000000000..c4487a91f97bf28bc57de5d6a1a0204d7dd4680e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2180.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 14, + 37 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2181.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2181.json" new file mode 100644 index 0000000000000000000000000000000000000000..d2e67d1a5ee22cc7bcb986fefc2ce29cc88b6f6c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2181.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 80, + 12 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2182.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2182.json" new file mode 100644 index 0000000000000000000000000000000000000000..41c1d6d111161c795c586c803992e8cc535f3482 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2182.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito Sans", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 7, + 8 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2183.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2183.json" new file mode 100644 index 0000000000000000000000000000000000000000..7740412f2a938a0dc0256bec1d523faffcb2be62 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2183.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 40, + 99 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2184.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2184.json" new file mode 100644 index 0000000000000000000000000000000000000000..88361fd7d9d2cd3f7b2d8924fa107ce00e06ee84 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2184.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 32, + 34 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2185.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2185.json" new file mode 100644 index 0000000000000000000000000000000000000000..1a15fec483e4be7d067b55b01af666a5912eb4ed --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2185.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 70, + 44 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2186.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2186.json" new file mode 100644 index 0000000000000000000000000000000000000000..ab80b9b85a80fd2e622093a4d124e56566349001 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2186.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 29, + 47 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2187.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2187.json" new file mode 100644 index 0000000000000000000000000000000000000000..a703eba0afa07a083bd21600303f5108f92f1db7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2187.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 44, + 84 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2188.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2188.json" new file mode 100644 index 0000000000000000000000000000000000000000..7146a31690ce77b5b0e55b8820eb490338e89b9d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2188.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 14, + 51 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2189.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2189.json" new file mode 100644 index 0000000000000000000000000000000000000000..1228285357cb7102fdb0392becd12eb4683abab2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2189.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 12, + 4 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2190.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2190.json" new file mode 100644 index 0000000000000000000000000000000000000000..7f4293474a3a30bb649504795748ee10fa62dcc8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2190.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 48, + 7 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2191.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2191.json" new file mode 100644 index 0000000000000000000000000000000000000000..c531e09f90de494240c0adcd8ff78c3206a4605f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2191.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 14, + 58 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2192.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2192.json" new file mode 100644 index 0000000000000000000000000000000000000000..bf6d09e9f711063c6524e92ec8278ad350573300 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2192.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 34, + 47 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2193.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2193.json" new file mode 100644 index 0000000000000000000000000000000000000000..e497e53287a97108a9e684e9472947a7132feab3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2193.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 53, + 95 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2194.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2194.json" new file mode 100644 index 0000000000000000000000000000000000000000..a0a1879a042de9bc750be4f17c0b52b03a38dfbc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2194.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 40, + 26 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2195.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2195.json" new file mode 100644 index 0000000000000000000000000000000000000000..b91e792b13b0c19751ef141d02fa41303181130e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2195.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 29, + 46 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2196.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2196.json" new file mode 100644 index 0000000000000000000000000000000000000000..ca7f0de36061d05b972f73db45e0e16933be7def --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2196.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 77, + 94 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2197.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2197.json" new file mode 100644 index 0000000000000000000000000000000000000000..aafd3b3ab5e7c7d6d6d94c767fbd1a92273d6824 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2197.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 88, + 65 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2198.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2198.json" new file mode 100644 index 0000000000000000000000000000000000000000..433b7c0e7586e2cd03cd1cc8ba635345b508da14 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2198.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 28, + 71 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2199.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2199.json" new file mode 100644 index 0000000000000000000000000000000000000000..0dc298b0043ca0d41c20486e21bc132637b2be3c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2199.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 71, + 18 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2200.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2200.json" new file mode 100644 index 0000000000000000000000000000000000000000..f028d644363ed7d894afae1847598d4ad1e4a8e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2200.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 28, + 4 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2201.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2201.json" new file mode 100644 index 0000000000000000000000000000000000000000..75fd8a2907c759c49daa8b796ec1f2c5c5d3678c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2201.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 80, + 18 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2202.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2202.json" new file mode 100644 index 0000000000000000000000000000000000000000..2cd7644957b999698fb5180a9fdabdbab05e87d5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2202.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 72, + 76 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2203.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2203.json" new file mode 100644 index 0000000000000000000000000000000000000000..2991ac1a12fe7d1732b414289164c3f8b8b8711d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2203.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 38, + 18 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2204.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2204.json" new file mode 100644 index 0000000000000000000000000000000000000000..2d1c49d4d369646eb91456c5aee39894bb5d8d3f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2204.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 21, + 59 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2205.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2205.json" new file mode 100644 index 0000000000000000000000000000000000000000..9cf217e4eca0cb1c0aff19545f5ce2301aa6ffaa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2205.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 2, + 70 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2206.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2206.json" new file mode 100644 index 0000000000000000000000000000000000000000..4fa78d3717dd35b914665809a6560426f8712660 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2206.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "3.0", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 81, + 71 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2207.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2207.json" new file mode 100644 index 0000000000000000000000000000000000000000..3c8a211741caf4f37a27c7a05afb2815d416e8f7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2207.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 70, + 18 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2208.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2208.json" new file mode 100644 index 0000000000000000000000000000000000000000..2ed6e1e1eec4ef450e5907c99f6c7526c5d62a2a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2208.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 19, + 8 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2209.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2209.json" new file mode 100644 index 0000000000000000000000000000000000000000..cc63eb6ecef68ba0517d0fd7fd3b5cc963eb9e59 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2209.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 0, + 21 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2210.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2210.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f0f0ada2c49032c8cf507ea3f85a17dbfd1e996 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2210.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 58, + 15 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2211.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2211.json" new file mode 100644 index 0000000000000000000000000000000000000000..1e208163fb1073ccb9263abbb7d38a86f41e4c90 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2211.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 17, + 41 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2212.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2212.json" new file mode 100644 index 0000000000000000000000000000000000000000..6a55d8b407f82b07092b6366875bf51b986b055d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2212.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 19, + 63 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2213.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2213.json" new file mode 100644 index 0000000000000000000000000000000000000000..68511d8d7368f862f82b79a217b043c2b0e0cb37 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2213.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 31, + 77 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2214.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2214.json" new file mode 100644 index 0000000000000000000000000000000000000000..fb291e5e2c37d8bf3abb3d9e70a4fd92222f8d1e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2214.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 56, + 41 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2215.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2215.json" new file mode 100644 index 0000000000000000000000000000000000000000..ff94d3a9273ca128375c2b435af15b7b1bc06add --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2215.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 46, + 21 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2216.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2216.json" new file mode 100644 index 0000000000000000000000000000000000000000..7c12ce534c4fea956f9afc60fbb6b27a37c870d1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2216.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 77, + 68 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2217.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2217.json" new file mode 100644 index 0000000000000000000000000000000000000000..9a147c6d76000637a313844a4ceb08095b3be424 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2217.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 96, + 96 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2218.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2218.json" new file mode 100644 index 0000000000000000000000000000000000000000..ae67ae6503f3e61edd5b15330023f65e37bc804f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2218.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 22, + 5 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2219.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2219.json" new file mode 100644 index 0000000000000000000000000000000000000000..00527e04335213c4c855d77c86c3c8ac04488b7c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2219.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 39, + 65 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2220.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2220.json" new file mode 100644 index 0000000000000000000000000000000000000000..c2954bd7161defde5a55a8c088f7ac06fa1b2ffd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2220.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 10, + 47 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2221.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2221.json" new file mode 100644 index 0000000000000000000000000000000000000000..83f5ec96e39c16733c10335e12a0d6424ac23c3f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2221.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 90, + 50 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2222.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2222.json" new file mode 100644 index 0000000000000000000000000000000000000000..592c7d5f83e93613221e954f27cf25cf2c113d3e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2222.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 47, + 60 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2223.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2223.json" new file mode 100644 index 0000000000000000000000000000000000000000..2a35b778c374ddbf0b739874598912bd4341beef --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2223.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 2, + 51 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2224.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2224.json" new file mode 100644 index 0000000000000000000000000000000000000000..3c2e79559ac5b29d9dccb0931cc027631b09505a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2224.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 72, + 14 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2225.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2225.json" new file mode 100644 index 0000000000000000000000000000000000000000..716244a2a32e7e3196a2db3af4a5b5ca280b85bf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2225.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 100, + 80 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2226.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2226.json" new file mode 100644 index 0000000000000000000000000000000000000000..d9eba2844d698b786ed07505fd3e4e0293fc9545 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2226.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 92, + 41 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2227.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2227.json" new file mode 100644 index 0000000000000000000000000000000000000000..49774f50add9fb1d03a3981b68c5e3663affdf25 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2227.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 52, + 40 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2228.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2228.json" new file mode 100644 index 0000000000000000000000000000000000000000..97e7134c235be8da1ab70d95301dc3a7de880bbe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2228.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 92, + 94 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2229.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2229.json" new file mode 100644 index 0000000000000000000000000000000000000000..4014ed361c97e582902c3d44f2c528b6c9f287cf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2229.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 64, + 5 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2230.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2230.json" new file mode 100644 index 0000000000000000000000000000000000000000..382bba8fa0bb6b21e37f0754d653d95fb0c38e38 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2230.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 53, + 59 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2231.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2231.json" new file mode 100644 index 0000000000000000000000000000000000000000..7fca86831c329b68380369948f8d948d78195db0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2231.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 12, + 71 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2232.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2232.json" new file mode 100644 index 0000000000000000000000000000000000000000..3125b7e5e99babee3584617bd44910f5d99d1051 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2232.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 11, + 41 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2233.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2233.json" new file mode 100644 index 0000000000000000000000000000000000000000..87048d1dc9026627519cfa11ce72c672055f7795 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2233.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 19, + 0 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2234.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2234.json" new file mode 100644 index 0000000000000000000000000000000000000000..83e1b5ba01bfb621dbc0daf1aca02f0cd4117279 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2234.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 38, + 38 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2235.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2235.json" new file mode 100644 index 0000000000000000000000000000000000000000..ed1e02e62e8b2b4e7d7cb38f59df7e67f79486b8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2235.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 75, + 15 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2236.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2236.json" new file mode 100644 index 0000000000000000000000000000000000000000..96c2b43a5711f8ddc1ba7ffc545dae27dcb11d11 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2236.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 74, + 34 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2237.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2237.json" new file mode 100644 index 0000000000000000000000000000000000000000..ddb88936c369e916146bc0564e3a085f514042ae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2237.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 32, + 65 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2238.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2238.json" new file mode 100644 index 0000000000000000000000000000000000000000..586ec6f389778c3b2040f98ced2dac0152d82db2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2238.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 11, + 71 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2239.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2239.json" new file mode 100644 index 0000000000000000000000000000000000000000..19785b263befab45e2d18f3cea5a44ecf261bf7e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2239.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 23, + 58 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2240.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2240.json" new file mode 100644 index 0000000000000000000000000000000000000000..d651c7cf7193e98f588ae99d8da9c28eef0969db --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2240.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 31, + 94 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2241.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2241.json" new file mode 100644 index 0000000000000000000000000000000000000000..ec0843827c53fbcda01fbfd54339039690bfbe78 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2241.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 49, + 84 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2242.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2242.json" new file mode 100644 index 0000000000000000000000000000000000000000..9c08f6dd4016493e1391b0f47d1eb6524433698b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2242.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "3.0", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 7, + 74 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2243.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2243.json" new file mode 100644 index 0000000000000000000000000000000000000000..2eba9ef4a8e1dbfbc71b0dafc426c04d3e614f24 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2243.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 89, + 7 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2244.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2244.json" new file mode 100644 index 0000000000000000000000000000000000000000..819b9f8a1b8ce1dcefedc7d86e35a8af81c1b000 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2244.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 30, + 79 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2245.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2245.json" new file mode 100644 index 0000000000000000000000000000000000000000..8d6179619ebfb8a352db96ddeb35c11167bffa81 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2245.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 96, + 68 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2246.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2246.json" new file mode 100644 index 0000000000000000000000000000000000000000..eab76cdf13c5ecca315d7a5e39a5c1dc91df4781 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2246.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 33, + 13 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2247.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2247.json" new file mode 100644 index 0000000000000000000000000000000000000000..9741cec22a5796fed7161df40881d3a2bce9b3f4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2247.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 57, + 28 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2248.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2248.json" new file mode 100644 index 0000000000000000000000000000000000000000..1407985e9ac0ff737c116ed081fb31499886e237 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2248.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 54, + 5 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2249.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2249.json" new file mode 100644 index 0000000000000000000000000000000000000000..a26daf868cc25a138648417f064124fafe7af9d5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2249.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 20, + 58 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2250.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2250.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f749e2e994b3b1f917a3f9799492bc3a4bbf40e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2250.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 62, + 45 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2251.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2251.json" new file mode 100644 index 0000000000000000000000000000000000000000..5fed7a2ebd25625e7eb1c60bbe8ee6084c8b2340 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2251.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 51, + 88 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2252.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2252.json" new file mode 100644 index 0000000000000000000000000000000000000000..ebc291b171f99aaa8a290eab1e6bfeee0e42f070 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2252.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 96, + 11 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2253.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2253.json" new file mode 100644 index 0000000000000000000000000000000000000000..8e37e4f12eb70d99c38a8e047136cd625eda5450 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2253.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "3.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 93, + 24 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2254.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2254.json" new file mode 100644 index 0000000000000000000000000000000000000000..a67eb7e6a5cc2540aa2b5ac5f9e92e8ace27e014 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2254.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 16, + 30 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2255.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2255.json" new file mode 100644 index 0000000000000000000000000000000000000000..72427b6538a6f8139aa120b74d755c6157a79602 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2255.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 25, + 64 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2256.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2256.json" new file mode 100644 index 0000000000000000000000000000000000000000..346bde23a59eff8e710b4c169773c4e4f3387669 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2256.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 80, + 75 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2257.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2257.json" new file mode 100644 index 0000000000000000000000000000000000000000..44328ecbf5de55a646bf1ddcb779fc7fdd405048 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2257.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 71, + 55 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2258.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2258.json" new file mode 100644 index 0000000000000000000000000000000000000000..c9e55beed4ff749d5f2853b79be5a5e0e5a2d090 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2258.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 84, + 60 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2259.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2259.json" new file mode 100644 index 0000000000000000000000000000000000000000..7854e238475ea0941b7bb376afc5ebae85886917 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2259.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 20, + 33 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2260.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2260.json" new file mode 100644 index 0000000000000000000000000000000000000000..cb167c177ecc61c3cab84aadcdfccf8c32c1fb3e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2260.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 51, + 35 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2261.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2261.json" new file mode 100644 index 0000000000000000000000000000000000000000..1873f544f7587a32b67f9837380b68b1589d6153 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2261.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 45, + 63 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2262.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2262.json" new file mode 100644 index 0000000000000000000000000000000000000000..636ea9bfe40fb75004fef5aa0bfaa3a34cd646ab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2262.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 64, + 43 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2263.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2263.json" new file mode 100644 index 0000000000000000000000000000000000000000..28ac35f13399d7926d37a06676542b982ddee074 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2263.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 17, + 22 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2264.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2264.json" new file mode 100644 index 0000000000000000000000000000000000000000..26da4f5ef830085b5ccff29524abf8aab6bbbd92 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2264.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 73, + 0 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2265.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2265.json" new file mode 100644 index 0000000000000000000000000000000000000000..9d4b7d98e19ace79f333e7fb5025980cc9b064d8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2265.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 8, + 70 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2266.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2266.json" new file mode 100644 index 0000000000000000000000000000000000000000..094d0bf4d00a01c683f10105df701d9ea1e1de65 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2266.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 39, + 10 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2267.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2267.json" new file mode 100644 index 0000000000000000000000000000000000000000..31552536c3a1e18c3e971de24f6d85684f099d91 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2267.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 27, + 1 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2268.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2268.json" new file mode 100644 index 0000000000000000000000000000000000000000..15fbbea79468203ff458ea23fffe008bf7bea4a2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2268.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 77, + 15 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2269.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2269.json" new file mode 100644 index 0000000000000000000000000000000000000000..ed3ccfcaa43299c0118f9937e0dd1eb07248f855 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2269.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 8, + 95 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2270.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2270.json" new file mode 100644 index 0000000000000000000000000000000000000000..977224d7973cd28521187d87f86853ae044970b6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2270.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 66, + 21 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2271.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2271.json" new file mode 100644 index 0000000000000000000000000000000000000000..e22c2c2c4080d8f5c772201ddbab95c7f7f3bea4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2271.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 33, + 7 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2272.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2272.json" new file mode 100644 index 0000000000000000000000000000000000000000..0689c9071eea63773024ba9e296c0f38dd8d7b88 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2272.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 61, + 51 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2273.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2273.json" new file mode 100644 index 0000000000000000000000000000000000000000..0291ef015ed4f4dcd31bcb5344bab155b718635d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2273.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 42, + 70 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2274.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2274.json" new file mode 100644 index 0000000000000000000000000000000000000000..18a76625aee1afbad3c1b06dc7ef8601a6d10531 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2274.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 48, + 97 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2275.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2275.json" new file mode 100644 index 0000000000000000000000000000000000000000..6a7e1f9a2ea83f68c0afea222de8c40b99ee61cd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2275.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 53, + 41 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2276.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2276.json" new file mode 100644 index 0000000000000000000000000000000000000000..3aa90fdf6104088933b2002243ae025c26c80c8a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2276.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 90, + 36 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2277.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2277.json" new file mode 100644 index 0000000000000000000000000000000000000000..95992c3445c5fffc05548ccdc0687cbf12cfeea8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2277.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 29, + 78 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2278.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2278.json" new file mode 100644 index 0000000000000000000000000000000000000000..3c1b33f7799095f85b3a851a56913dcc27dcaa29 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2278.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 22, + 53 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2279.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2279.json" new file mode 100644 index 0000000000000000000000000000000000000000..675052975a87c48f8d87444c9d94ee5a96341b77 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2279.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 15, + 83 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2280.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2280.json" new file mode 100644 index 0000000000000000000000000000000000000000..30fd361b9a13ec916eca7ed383d4140f5f5b575c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2280.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 2, + 63 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2281.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2281.json" new file mode 100644 index 0000000000000000000000000000000000000000..a9155c30f43842584c317a1be19be0f0b75ad31f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2281.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 89, + 78 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2282.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2282.json" new file mode 100644 index 0000000000000000000000000000000000000000..dd22d05ff29cd68616cb17e22613f72a045c04c7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2282.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 12, + 72 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2283.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2283.json" new file mode 100644 index 0000000000000000000000000000000000000000..df858654c50e6f8b9b7db9ed649438020649ef7b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2283.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 67, + 72 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2284.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2284.json" new file mode 100644 index 0000000000000000000000000000000000000000..48b506b1c657592b976344f0c1843788a683259d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2284.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 56, + 56 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2285.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2285.json" new file mode 100644 index 0000000000000000000000000000000000000000..9a51d63305440620259ba46a41c916fb81e80514 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2285.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 66, + 70 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2286.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2286.json" new file mode 100644 index 0000000000000000000000000000000000000000..54b6e4abb5496ee31fa02d9efeb42876ecb3a883 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2286.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 45, + 72 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2287.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2287.json" new file mode 100644 index 0000000000000000000000000000000000000000..7d91cdbb1d96cedd09f0b58ccd361f4d04bb7acf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2287.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 50, + 98 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2288.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2288.json" new file mode 100644 index 0000000000000000000000000000000000000000..e81176e3246e2cf3d1d6879ab2018986e6df439f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2288.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 50, + 48 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2289.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2289.json" new file mode 100644 index 0000000000000000000000000000000000000000..3eab586cfda06c90ee59267a15d8c0a65fa7fc44 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2289.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 51, + 24 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2290.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2290.json" new file mode 100644 index 0000000000000000000000000000000000000000..252ae61e692579100e07bb843cb1d11fd726ebf8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2290.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 74, + 83 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2291.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2291.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac0d1769aca58a88933822dcf2b43c0a0579c86d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2291.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.4", + "shadow": "3.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 30, + 24 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2292.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2292.json" new file mode 100644 index 0000000000000000000000000000000000000000..9848974862d34f52f9072c1fc44439d6230ec3cc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2292.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 19, + 92 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2293.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2293.json" new file mode 100644 index 0000000000000000000000000000000000000000..763cd18fed8eb7220c15c5b21c4ea03ec6648c46 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2293.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 98, + 87 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2294.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2294.json" new file mode 100644 index 0000000000000000000000000000000000000000..d7068aa90209af71979927796be46150f5e894ba --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2294.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 91, + 69 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2295.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2295.json" new file mode 100644 index 0000000000000000000000000000000000000000..97717dd98d4d02e9e17158789d183554592cb8a5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2295.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 79, + 9 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2296.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2296.json" new file mode 100644 index 0000000000000000000000000000000000000000..a7eb594f01362c1e1c4a90276e4b1df0741eb5cc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2296.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 18, + 43 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2297.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2297.json" new file mode 100644 index 0000000000000000000000000000000000000000..585a35e2d74b96eaf175ded486cdb3ad07d8e513 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2297.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 87, + 11 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2298.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2298.json" new file mode 100644 index 0000000000000000000000000000000000000000..103d60a933682266342b3b04351be5b4ca6f9b98 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2298.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 55, + 26 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2299.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2299.json" new file mode 100644 index 0000000000000000000000000000000000000000..36150170fbcf7497801b9c9d56366565991121a5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2299.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 58, + 77 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2300.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2300.json" new file mode 100644 index 0000000000000000000000000000000000000000..62c82c98084e809fdf8ad5240eb7fe3844771e2e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2300.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 29, + 59 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2301.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2301.json" new file mode 100644 index 0000000000000000000000000000000000000000..8a70d6142c8ca268eb3eb23cb6ba59557e5bc438 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2301.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 90, + 76 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2302.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2302.json" new file mode 100644 index 0000000000000000000000000000000000000000..2586d145ccd9cbd8a5580fd55162b6ed0b343d56 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2302.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 99, + 28 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2303.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2303.json" new file mode 100644 index 0000000000000000000000000000000000000000..e029b80d3b4aa0f403afb0e306c38e3d2564021c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2303.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 97, + 61 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2304.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2304.json" new file mode 100644 index 0000000000000000000000000000000000000000..911ad8bac5faa799fd1f28a6ec9a0326c1bd3aae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2304.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 44, + 22 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2305.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2305.json" new file mode 100644 index 0000000000000000000000000000000000000000..7e4dcfcd42f1fadcf720f860272b94a87818c13b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2305.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 62, + 41 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2306.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2306.json" new file mode 100644 index 0000000000000000000000000000000000000000..da33cd6651942015e2c4873063c84df9810d3010 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2306.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 18, + 48 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2307.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2307.json" new file mode 100644 index 0000000000000000000000000000000000000000..9cdccc8a3be01a4dc1e32fff09d80ee4d505e863 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2307.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 36, + 21 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2308.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2308.json" new file mode 100644 index 0000000000000000000000000000000000000000..0299f3e231fc91c2cfa8a14d5670093c7fe3ab37 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2308.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 46, + 56 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2309.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2309.json" new file mode 100644 index 0000000000000000000000000000000000000000..34226bd85ebc1dcceeecae906714706a7b228656 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2309.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 100, + 24 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2310.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2310.json" new file mode 100644 index 0000000000000000000000000000000000000000..719ee3ef1d3194d0124de85e37d06e18ddf04b13 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2310.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 0, + 12 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2311.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2311.json" new file mode 100644 index 0000000000000000000000000000000000000000..a2a596a4966b1f9179895a84af06416850d1da9a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2311.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 53, + 98 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2312.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2312.json" new file mode 100644 index 0000000000000000000000000000000000000000..85d3f07cb6d6559e6c49206d153a5186cd647e14 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2312.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 48, + 98 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2313.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2313.json" new file mode 100644 index 0000000000000000000000000000000000000000..c6fadd2e4fdcf531203f3234ffcb8628adbdbc5f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2313.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 95, + 9 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2314.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2314.json" new file mode 100644 index 0000000000000000000000000000000000000000..b680c4cd015d630fa5b64fd748fa8ba5a1df4db0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2314.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 5, + 73 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2315.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2315.json" new file mode 100644 index 0000000000000000000000000000000000000000..6f8f8a7fe17c64ebb882f5019c021c6fab603473 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2315.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 65, + 13 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2316.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2316.json" new file mode 100644 index 0000000000000000000000000000000000000000..ce21d96c79c2b5d7c7be74be8a3d8694eaa867c9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2316.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 16, + 58 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2317.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2317.json" new file mode 100644 index 0000000000000000000000000000000000000000..13c3167be58c823c8e1a3117e3db1213fd589448 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2317.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 44, + 43 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2318.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2318.json" new file mode 100644 index 0000000000000000000000000000000000000000..344c15c9b1a286dc2663839a4843d166ebf0650f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2318.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 70, + 20 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2319.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2319.json" new file mode 100644 index 0000000000000000000000000000000000000000..038f630a0565b250f199b4b5e502489bffda0521 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2319.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 62, + 32 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2320.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2320.json" new file mode 100644 index 0000000000000000000000000000000000000000..c73b02cd4cc22b65c6e478ebf67f6c0e539706aa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2320.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 55, + 24 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2321.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2321.json" new file mode 100644 index 0000000000000000000000000000000000000000..11990be4d6db769b6d8e22b1c4cc1754f18c9f1e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2321.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 87, + 18 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2322.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2322.json" new file mode 100644 index 0000000000000000000000000000000000000000..424d2188959f539434ed039e90af35d236e21eb3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2322.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 2, + 100 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2323.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2323.json" new file mode 100644 index 0000000000000000000000000000000000000000..c4a8e415fb465f5ea2af26e3bcc6d2a3bdd7d090 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2323.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 87, + 49 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2324.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2324.json" new file mode 100644 index 0000000000000000000000000000000000000000..c0165cad3dc0c1bee2b67166d6be3fce6535a7ab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2324.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 11, + 77 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2325.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2325.json" new file mode 100644 index 0000000000000000000000000000000000000000..821af8784f43caff6d13f418836eb95abf2637e4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2325.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 21, + 9 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2326.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2326.json" new file mode 100644 index 0000000000000000000000000000000000000000..d489584b9770f42a2eebbcf7840668a32d1c7da1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2326.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 34, + 89 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2327.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2327.json" new file mode 100644 index 0000000000000000000000000000000000000000..eb58805130a8ed685b35ea777b0ccdd97cc2e700 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2327.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 60, + 31 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2328.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2328.json" new file mode 100644 index 0000000000000000000000000000000000000000..990d2fac699df9fc16b667c330192c1ec66d552d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2328.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 32, + 21 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2329.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2329.json" new file mode 100644 index 0000000000000000000000000000000000000000..8fbd930585824581c476a043822695e6ed48fd0b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2329.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 71, + 7 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2330.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2330.json" new file mode 100644 index 0000000000000000000000000000000000000000..98630d72f73387d165c14e0a1e80ed7306b4cee2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2330.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 91, + 51 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2331.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2331.json" new file mode 100644 index 0000000000000000000000000000000000000000..5ac0572f5ff567837bfafe09e112980e6b28cde8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2331.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 54, + 78 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2332.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2332.json" new file mode 100644 index 0000000000000000000000000000000000000000..140619ece7914de3cfb64209b3eb448a89ed4aee --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2332.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 85, + 88 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2333.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2333.json" new file mode 100644 index 0000000000000000000000000000000000000000..d07c99f6a8d570821c6f099f0564c24b49b2ba40 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2333.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 96, + 4 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2334.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2334.json" new file mode 100644 index 0000000000000000000000000000000000000000..358c658bee3dc812ad9db8719031a64eaa5099ad --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2334.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 30, + 21 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2335.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2335.json" new file mode 100644 index 0000000000000000000000000000000000000000..51d2dd75e1ca7236dd9d5ab08f0a4c8f88807e82 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2335.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 56, + 1 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2336.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2336.json" new file mode 100644 index 0000000000000000000000000000000000000000..3aae7be13ea188324d3f18f60a506c63b9dd2d80 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2336.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 67, + 89 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2337.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2337.json" new file mode 100644 index 0000000000000000000000000000000000000000..fabf4044713725aef1d06924bde547ceb51cea92 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2337.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 72, + 60 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2338.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2338.json" new file mode 100644 index 0000000000000000000000000000000000000000..4f563b40aa7695ea0fe8d9ca1b65681ad2d04033 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2338.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 74, + 67 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2339.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2339.json" new file mode 100644 index 0000000000000000000000000000000000000000..f844dca00615fc573b6bf1eb207fbb8fc910778e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2339.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 20, + 79 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2340.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2340.json" new file mode 100644 index 0000000000000000000000000000000000000000..8e61eb482a142191bed82e8f2d779831555cdbb6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2340.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 84, + 39 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2341.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2341.json" new file mode 100644 index 0000000000000000000000000000000000000000..84671c66c2b3fb50b92671219a9f0adba4ef2696 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2341.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 93, + 31 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2342.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2342.json" new file mode 100644 index 0000000000000000000000000000000000000000..018d0cf47401a4f1616bd79620e1af618656c17b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2342.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 61, + 29 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2343.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2343.json" new file mode 100644 index 0000000000000000000000000000000000000000..215161414c6ab1840d4ec102daf4d29ec5607374 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2343.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 57, + 2 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2344.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2344.json" new file mode 100644 index 0000000000000000000000000000000000000000..aa03de8ba26a987d313252d803dd97fe0119dead --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2344.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 87, + 31 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2345.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2345.json" new file mode 100644 index 0000000000000000000000000000000000000000..90e1fadbf070a623f7b12fc1c2d86207430699f8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2345.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 60, + 14 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2346.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2346.json" new file mode 100644 index 0000000000000000000000000000000000000000..dff5634414edc736ac1cb5525505b581f9df2075 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2346.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 77, + 23 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2347.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2347.json" new file mode 100644 index 0000000000000000000000000000000000000000..c5aa0998e2d4b417964a421ca28daf718072c646 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2347.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 100, + 64 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2348.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2348.json" new file mode 100644 index 0000000000000000000000000000000000000000..e9985dfea851908e6f0a6a29f284aebc57f244ee --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2348.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 13, + 86 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2349.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2349.json" new file mode 100644 index 0000000000000000000000000000000000000000..0df03181008085b24ef7ba1faf435b9390645184 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2349.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 96, + 17 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2350.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2350.json" new file mode 100644 index 0000000000000000000000000000000000000000..c53dfc866ec6c57a78559c3252d2ce71880afaf2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2350.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 5, + 19 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2351.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2351.json" new file mode 100644 index 0000000000000000000000000000000000000000..92b73f9ce8bf1ca9d753623c90786944688f4157 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2351.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 58, + 87 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2352.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2352.json" new file mode 100644 index 0000000000000000000000000000000000000000..1dd387efc9f3e8b3fbb21cb93ec8af7b0198cb3c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2352.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 86, + 75 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2353.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2353.json" new file mode 100644 index 0000000000000000000000000000000000000000..af3dd7294d84b87df3880d843bae5ca1b4dba587 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2353.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 77, + 90 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2354.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2354.json" new file mode 100644 index 0000000000000000000000000000000000000000..87cfdaf09815a87ef83bbc41d1f42b2f84297dff --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2354.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 76, + 42 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2355.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2355.json" new file mode 100644 index 0000000000000000000000000000000000000000..f97fdad4b60ee4277c8fd1baea8584df979b1a2a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2355.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 5, + 2 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2356.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2356.json" new file mode 100644 index 0000000000000000000000000000000000000000..dbf2ba074a6a5eeaf366b386f4646ea51bb12891 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2356.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 91, + 70 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2357.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2357.json" new file mode 100644 index 0000000000000000000000000000000000000000..d0bb6d5ff3beeb3ccabf64d51ee4a587c1f148ab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2357.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 32, + 71 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2358.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2358.json" new file mode 100644 index 0000000000000000000000000000000000000000..76051827bbc16ef32228701a02be42237051882e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2358.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 73, + 45 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2359.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2359.json" new file mode 100644 index 0000000000000000000000000000000000000000..19afdea4eb4df4d195c865ddb35320034a954645 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2359.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 71, + 70 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2360.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2360.json" new file mode 100644 index 0000000000000000000000000000000000000000..b4913694880e94c82f4ad97c3d964519ca76ada2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2360.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 83, + 12 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2361.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2361.json" new file mode 100644 index 0000000000000000000000000000000000000000..c638cdc63988d5335f3bed5149284244806406d9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2361.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 68, + 56 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2362.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2362.json" new file mode 100644 index 0000000000000000000000000000000000000000..3a39375a6acbd1a0ec332de42cfc0c8cc75275cc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2362.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 91, + 0 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2363.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2363.json" new file mode 100644 index 0000000000000000000000000000000000000000..c08fda243144b649c5661f903ac7fe00e3a44f60 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2363.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "3.0", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 41, + 83 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2364.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2364.json" new file mode 100644 index 0000000000000000000000000000000000000000..a128981c628087bb9b1dedb4d1493be1de791472 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2364.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 34, + 71 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2365.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2365.json" new file mode 100644 index 0000000000000000000000000000000000000000..85bec46fbe6e767fe7e8ebbaa072ca7e1e38a8a6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2365.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 36, + 25 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2366.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2366.json" new file mode 100644 index 0000000000000000000000000000000000000000..ec3ae1067e217be372ce9593a6f05da11535ede2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2366.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 76, + 54 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2367.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2367.json" new file mode 100644 index 0000000000000000000000000000000000000000..ab3c963992a5dcd3b078198847d70bed216fb7d3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2367.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 20, + 23 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2368.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2368.json" new file mode 100644 index 0000000000000000000000000000000000000000..7133176313834c2cf7b23ca90f03ffbe3b3241bc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2368.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 20, + 41 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2369.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2369.json" new file mode 100644 index 0000000000000000000000000000000000000000..ef8664348a81a4c4ad21a71e0af5d137d1d89b2d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2369.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 3, + 69 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2370.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2370.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f246b524f3e0751a26010ce51de4befa144b2e2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2370.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 58, + 7 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2371.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2371.json" new file mode 100644 index 0000000000000000000000000000000000000000..a362198f3e3abd734bc8ea1a0922b9128f3119e6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2371.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 91, + 46 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2372.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2372.json" new file mode 100644 index 0000000000000000000000000000000000000000..d11f44b870ddffe1015a299acd1dcee0e705e090 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2372.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 8, + 60 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2373.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2373.json" new file mode 100644 index 0000000000000000000000000000000000000000..99d117e8f00b690ddad25687962ed122591775a5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2373.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 35, + 91 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2374.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2374.json" new file mode 100644 index 0000000000000000000000000000000000000000..3d9ed516db5bda6d8e9d2bbb01411856e5a52683 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2374.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 45, + 16 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2375.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2375.json" new file mode 100644 index 0000000000000000000000000000000000000000..fe27271d1190482fd18592aaac0774fd59e36e31 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2375.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 26, + 79 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2376.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2376.json" new file mode 100644 index 0000000000000000000000000000000000000000..ca3c10c7eee7057682cf8f3b16a44d80dcd69cc1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2376.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 40, + 82 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2377.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2377.json" new file mode 100644 index 0000000000000000000000000000000000000000..dd9478ffc43eb6d167ee26bead27d05e3cd69b8a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2377.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 13, + 66 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2378.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2378.json" new file mode 100644 index 0000000000000000000000000000000000000000..b7f955a71b3d06a3d58f045cceb42f1206e283e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2378.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 76, + 23 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2379.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2379.json" new file mode 100644 index 0000000000000000000000000000000000000000..8c73f61cda9c2383b05425f32e19351bd279d147 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2379.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 48, + 24 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2380.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2380.json" new file mode 100644 index 0000000000000000000000000000000000000000..bbeb746b2da679b491e867532c9c5ab83af344e6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2380.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 75, + 65 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2381.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2381.json" new file mode 100644 index 0000000000000000000000000000000000000000..fff10d7419b8c92e2d8132633ba5bc7f6271f700 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2381.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 47, + 68 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2382.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2382.json" new file mode 100644 index 0000000000000000000000000000000000000000..347d3553943688ea83fdc06ddb63fab2e1888d87 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2382.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 59, + 59 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2383.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2383.json" new file mode 100644 index 0000000000000000000000000000000000000000..6af48c97de01e0d0d430c84898c3b04221ee4fb3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2383.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 12, + 68 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2384.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2384.json" new file mode 100644 index 0000000000000000000000000000000000000000..da72991a69109ac70ca5b4a127b798c9d4447390 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2384.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 7, + 91 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2385.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2385.json" new file mode 100644 index 0000000000000000000000000000000000000000..a611de1d84c22503a3b6589555dda71169a87bd9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2385.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 82, + 95 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2386.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2386.json" new file mode 100644 index 0000000000000000000000000000000000000000..8289417de1caffc81aa36289b5de88bb42b9cf2e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2386.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 77, + 49 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2387.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2387.json" new file mode 100644 index 0000000000000000000000000000000000000000..971f15d6ee20ae212191eb9e9af842df4283b567 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2387.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 98, + 100 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2388.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2388.json" new file mode 100644 index 0000000000000000000000000000000000000000..34b858de8aac5512bc32380aed374b8a1d3f291d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2388.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 3, + 49 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2389.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2389.json" new file mode 100644 index 0000000000000000000000000000000000000000..e581324f401e43c2786a11b951cf187aaa0b1ae0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2389.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 71, + 97 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2390.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2390.json" new file mode 100644 index 0000000000000000000000000000000000000000..8afc54e09a93f2c958c94451177c09b2d9b2836c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2390.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 1, + 12 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2391.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2391.json" new file mode 100644 index 0000000000000000000000000000000000000000..cf795c331b122f6747744e72937d266489d003bc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2391.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 56, + 87 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2392.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2392.json" new file mode 100644 index 0000000000000000000000000000000000000000..cd059b88fd943cf9c1dc680c37ca05de68ed74ea --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2392.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 29, + 74 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2393.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2393.json" new file mode 100644 index 0000000000000000000000000000000000000000..32b092934ad92b768f40f719b4651873040d71dd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2393.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 30, + 53 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2394.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2394.json" new file mode 100644 index 0000000000000000000000000000000000000000..db80ab591a43da5cc6a4ff23836f6a81ddc1ce4c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2394.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 56, + 74 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2395.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2395.json" new file mode 100644 index 0000000000000000000000000000000000000000..9c4ad8cb9f11ce810796df24de92c75016c6d44c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2395.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 57, + 13 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2396.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2396.json" new file mode 100644 index 0000000000000000000000000000000000000000..53cfacf5d65aa826b8d6e6c6f0e485baa354c093 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2396.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 83, + 74 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2397.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2397.json" new file mode 100644 index 0000000000000000000000000000000000000000..a8326483e84a97f91d657a5dd55aabc2cf97d4d5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2397.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 86, + 12 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2398.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2398.json" new file mode 100644 index 0000000000000000000000000000000000000000..edc32c8eeacf22816b6a733b0a0be47973e61674 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2398.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "3.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 85, + 79 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2399.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2399.json" new file mode 100644 index 0000000000000000000000000000000000000000..791cca4a3b9107e2e801d0388765d95a0ba25a5c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2399.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 41, + 45 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2400.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2400.json" new file mode 100644 index 0000000000000000000000000000000000000000..55e4540783972672bda79040dde74f417e859c20 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2400.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 49, + 61 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2401.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2401.json" new file mode 100644 index 0000000000000000000000000000000000000000..6c1c3fe010c7a5c282e63fc1bcbbc5d089a711ad --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2401.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 36, + 68 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2402.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2402.json" new file mode 100644 index 0000000000000000000000000000000000000000..80f7a1e289dc40d5ff1c0058167b5ee1ff1f1f7c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2402.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 36, + 53 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2403.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2403.json" new file mode 100644 index 0000000000000000000000000000000000000000..847818f4860b73b9f72a14318c9142d00ff010c0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2403.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 81, + 22 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2404.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2404.json" new file mode 100644 index 0000000000000000000000000000000000000000..ea93656b4a93c81d12f3786c8aa35178478577c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2404.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 43, + 18 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2405.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2405.json" new file mode 100644 index 0000000000000000000000000000000000000000..45a1323233790d8462b7cf7337d6f65940ace508 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2405.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 15, + 72 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2406.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2406.json" new file mode 100644 index 0000000000000000000000000000000000000000..5d795245d286d7d5ee049bf7607a919afc9c55a9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2406.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 4, + 27 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2407.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2407.json" new file mode 100644 index 0000000000000000000000000000000000000000..56f19b62efd04056fba220330d7494058c81cd44 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2407.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 64, + 2 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2408.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2408.json" new file mode 100644 index 0000000000000000000000000000000000000000..99528e5e2339f2f9ca297abc98a65aa052656470 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2408.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 28, + 20 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2409.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2409.json" new file mode 100644 index 0000000000000000000000000000000000000000..95484e0aa7f1bbff7a083c8824cb7f6c49453006 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2409.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 86, + 79 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2410.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2410.json" new file mode 100644 index 0000000000000000000000000000000000000000..843fa8e4f9caf51fd4c7939b157b4a6634fe3704 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2410.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 57, + 7 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2411.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2411.json" new file mode 100644 index 0000000000000000000000000000000000000000..3bcaf6ea1f1bb628204c0cf537c8b170702b4f8a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2411.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 23, + 23 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2412.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2412.json" new file mode 100644 index 0000000000000000000000000000000000000000..106feaf1fd167e1a37f8660c5d1f4f57aae88960 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2412.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 81, + 69 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2413.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2413.json" new file mode 100644 index 0000000000000000000000000000000000000000..96e57a17d856fea8b66a7baf5ce3373b71c8115c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2413.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 10, + 44 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2414.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2414.json" new file mode 100644 index 0000000000000000000000000000000000000000..c8a0b562a9edb4816b4aab6a171870410e17b441 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2414.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 34, + 19 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2415.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2415.json" new file mode 100644 index 0000000000000000000000000000000000000000..d875af5b351fd6a530d6c3b16f52d341ce2c1af8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2415.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 97, + 75 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2416.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2416.json" new file mode 100644 index 0000000000000000000000000000000000000000..d6a4ee62dba9fcf510acaf94e589fad1233f66ed --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2416.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 40, + 13 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2417.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2417.json" new file mode 100644 index 0000000000000000000000000000000000000000..14b502eea7386e7f87c7dc03713eee063294a5b7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2417.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 51, + 34 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2418.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2418.json" new file mode 100644 index 0000000000000000000000000000000000000000..55acfd1dda15c1c6bb1aa4d3559a98c8a085df03 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2418.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 97, + 48 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2419.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2419.json" new file mode 100644 index 0000000000000000000000000000000000000000..5d3591db57a6c7f2af10f19d3d70096dc9c1b570 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2419.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 71, + 51 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2420.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2420.json" new file mode 100644 index 0000000000000000000000000000000000000000..f4267f24d05d17df01934477ac882b90a3002467 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2420.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 51, + 78 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2421.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2421.json" new file mode 100644 index 0000000000000000000000000000000000000000..8124aa9bfbc56203c3a96b84d994bc436ae4bc87 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2421.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 70, + 84 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2422.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2422.json" new file mode 100644 index 0000000000000000000000000000000000000000..e1843372b7926d71a32c87f7d290205aa23637e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2422.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 91, + 1 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2423.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2423.json" new file mode 100644 index 0000000000000000000000000000000000000000..5844f9a2a6668e2cd7c550f852adf00804fce28a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2423.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 84, + 84 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2424.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2424.json" new file mode 100644 index 0000000000000000000000000000000000000000..dae9a66a644cb4d172bf7faae723bb7270298607 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2424.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 43, + 29 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2425.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2425.json" new file mode 100644 index 0000000000000000000000000000000000000000..41b7285a4c4b661ae3efdaa08ea094be9d8dd136 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2425.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 56, + 52 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2426.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2426.json" new file mode 100644 index 0000000000000000000000000000000000000000..6e9e5a63c71b740808f8add4b521864a46395479 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2426.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 12, + 80 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2427.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2427.json" new file mode 100644 index 0000000000000000000000000000000000000000..e57a62165674242d368ddbdb7c539c03b4fed5bf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2427.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 85, + 52 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2428.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2428.json" new file mode 100644 index 0000000000000000000000000000000000000000..ed0de36b653ae15f26c171191402feea0ecc22a3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2428.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 59, + 62 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2429.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2429.json" new file mode 100644 index 0000000000000000000000000000000000000000..326368010e43db9a5a28b6783b907b90e207265f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2429.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 94, + 28 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2430.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2430.json" new file mode 100644 index 0000000000000000000000000000000000000000..c0da093f823d27b4bc2d09a4ee1cd41296840fbc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2430.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 41, + 30 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2431.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2431.json" new file mode 100644 index 0000000000000000000000000000000000000000..6189dcadb777444ad7f95cb5f82e95f4571a3431 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2431.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 14, + 78 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2432.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2432.json" new file mode 100644 index 0000000000000000000000000000000000000000..e94658b8268d9dd6d03fb365768fc6237c5ea437 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2432.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 66, + 6 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2433.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2433.json" new file mode 100644 index 0000000000000000000000000000000000000000..5f5ce0196e2cd4720733d13f3b3c644b7644db6f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2433.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 27, + 23 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2434.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2434.json" new file mode 100644 index 0000000000000000000000000000000000000000..646222842f851a11a767bf2a3ac4190ee707becc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2434.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 42, + 7 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2435.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2435.json" new file mode 100644 index 0000000000000000000000000000000000000000..72f9a265fcff8a8daaea8cfab710be519c20e729 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2435.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 46, + 62 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2436.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2436.json" new file mode 100644 index 0000000000000000000000000000000000000000..681656f46286244055631dd4c3db87b35aa1bd11 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2436.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 48, + 72 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2437.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2437.json" new file mode 100644 index 0000000000000000000000000000000000000000..9c428dac8aa8c425ef755764c2c2e09ade527f62 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2437.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 83, + 25 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2438.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2438.json" new file mode 100644 index 0000000000000000000000000000000000000000..f8abeac9f466097008f47eb3208f251fae62d2da --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2438.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 89, + 51 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2439.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2439.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac9cc71c5d729b20885dbd43d219f598481632e6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2439.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 27, + 96 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2440.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2440.json" new file mode 100644 index 0000000000000000000000000000000000000000..746bcc3fcd56c4cc21e1cf45d45c36ab04e7897d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2440.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 46, + 34 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2441.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2441.json" new file mode 100644 index 0000000000000000000000000000000000000000..d2ed36339eefdb11fb288485620b053d55084f0b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2441.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 19, + 24 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2442.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2442.json" new file mode 100644 index 0000000000000000000000000000000000000000..d7df16b4bedcf34256af27e800144c45ff44be62 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2442.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 93, + 6 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2443.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2443.json" new file mode 100644 index 0000000000000000000000000000000000000000..a7461b01f00e774d1e5d21147a4fb7c71d9d88ab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2443.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 86, + 79 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2444.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2444.json" new file mode 100644 index 0000000000000000000000000000000000000000..ab07394dae1f6f95772c63d740459810614ba040 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2444.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Padauk", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 74, + 6 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2445.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2445.json" new file mode 100644 index 0000000000000000000000000000000000000000..1a50cd48f50e21e7de2d7877d9a489bb4864406d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2445.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 85, + 31 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2446.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2446.json" new file mode 100644 index 0000000000000000000000000000000000000000..5d2cf4c6b21b764d25aa858e64e4c077c05b29aa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2446.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 38, + 2 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2447.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2447.json" new file mode 100644 index 0000000000000000000000000000000000000000..e6e6dea625b78cdb502262a9d8189cbb3359bd8c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2447.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 9, + 85 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2448.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2448.json" new file mode 100644 index 0000000000000000000000000000000000000000..6a70ba9b8a383f0b8dfcee7f63a482516f3686ce --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2448.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 11, + 43 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2449.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2449.json" new file mode 100644 index 0000000000000000000000000000000000000000..8aa1b9815449c30a9c2fd909002731c08803fc35 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2449.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "3.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 18, + 63 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2450.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2450.json" new file mode 100644 index 0000000000000000000000000000000000000000..d52e8c7799eaff39d4061a7dd5cee4a2eeb003a2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2450.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 45, + 99 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2451.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2451.json" new file mode 100644 index 0000000000000000000000000000000000000000..2bae407af0f084fb79fc21036bf4b6ffe5f75343 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2451.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 99, + 20 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2452.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2452.json" new file mode 100644 index 0000000000000000000000000000000000000000..772bccdca0c7672b8e1426f80aea7f5892855007 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2452.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 47, + 61 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2453.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2453.json" new file mode 100644 index 0000000000000000000000000000000000000000..87f79d5cdbec29dfdb6e54ededaba19f0859040f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2453.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 89, + 98 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2454.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2454.json" new file mode 100644 index 0000000000000000000000000000000000000000..60ae5dc06da7a952e4609694293abd132e7aa860 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2454.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 84, + 44 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2455.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2455.json" new file mode 100644 index 0000000000000000000000000000000000000000..f9e4789a0906a6268323125e23922a0cb91b4939 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2455.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 73, + 82 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2456.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2456.json" new file mode 100644 index 0000000000000000000000000000000000000000..78cc74e6dcea2defb396b20d1c1e0a2f2845c963 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2456.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 9, + 39 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2457.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2457.json" new file mode 100644 index 0000000000000000000000000000000000000000..c1a943b0d8e6248497aa5ba4ef0bb5ce61b6bebf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2457.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 55, + 5 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2458.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2458.json" new file mode 100644 index 0000000000000000000000000000000000000000..2dfed25cb54f9ae7f73098184da2ed4c2e1abb17 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2458.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 68, + 42 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2459.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2459.json" new file mode 100644 index 0000000000000000000000000000000000000000..c31d99179568a4af61e55b5567431f2cb141d3f2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2459.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 15, + 96 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2460.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2460.json" new file mode 100644 index 0000000000000000000000000000000000000000..9fa5962444a2a823f7df332cf850f4612092473d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2460.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 28, + 51 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2461.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2461.json" new file mode 100644 index 0000000000000000000000000000000000000000..9f5e38094ad6e0973dcef7edad0d70e192bc1cdc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2461.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 92, + 15 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2462.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2462.json" new file mode 100644 index 0000000000000000000000000000000000000000..d62a6a5fe2e96441331f2bd43987131959d55b61 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2462.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 11, + 13 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2463.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2463.json" new file mode 100644 index 0000000000000000000000000000000000000000..8a34c9938c9c4d2ce82f89003a988fd212bda8be --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2463.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 56, + 63 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2464.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2464.json" new file mode 100644 index 0000000000000000000000000000000000000000..035f53cd8c817fee18243ebf74874114b930558b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2464.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 10, + 31 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2465.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2465.json" new file mode 100644 index 0000000000000000000000000000000000000000..d4461faaa89efbdc7856f86a9382e334282f1df4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2465.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.6", + "shadow": "3.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 28, + 35 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2466.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2466.json" new file mode 100644 index 0000000000000000000000000000000000000000..dfe7902ac978f5c12ba4f52955fdf92406b73e90 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2466.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 82, + 39 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2467.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2467.json" new file mode 100644 index 0000000000000000000000000000000000000000..b9ca4399b3ebfe75d81764b1278a3142e62e9ed2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2467.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 72, + 28 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2468.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2468.json" new file mode 100644 index 0000000000000000000000000000000000000000..fd764eff2adf0219a1d0dd027107f6263ca4b7c9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2468.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 94, + 10 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2469.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2469.json" new file mode 100644 index 0000000000000000000000000000000000000000..80a5cd4fe8194ab84fefec6b39686b5e633a4c02 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2469.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 88, + 32 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2470.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2470.json" new file mode 100644 index 0000000000000000000000000000000000000000..323c83e5adb9579301aa00e23a59d4c0a78b5495 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2470.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 78, + 93 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2471.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2471.json" new file mode 100644 index 0000000000000000000000000000000000000000..738a259bfee97c605b561af47d0d175577e5540d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2471.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 100, + 98 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2472.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2472.json" new file mode 100644 index 0000000000000000000000000000000000000000..447dabfb116e65c8af02372d77f43ab9ad2e48d5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2472.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 5, + 65 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2473.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2473.json" new file mode 100644 index 0000000000000000000000000000000000000000..97fb31e20ab290822a32145989d4040e318ff6dc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2473.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 76, + 72 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2474.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2474.json" new file mode 100644 index 0000000000000000000000000000000000000000..adf43a8ff540b22fb963d0f42acefd9d50435559 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2474.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 2, + 75 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2475.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2475.json" new file mode 100644 index 0000000000000000000000000000000000000000..5fd83bea651225ebf426f2d13a1fbdf8adb927a2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2475.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 63, + 65 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2476.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2476.json" new file mode 100644 index 0000000000000000000000000000000000000000..9367080b0e5043311b9c8ff9f8011e791858585b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2476.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 37, + 70 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2477.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2477.json" new file mode 100644 index 0000000000000000000000000000000000000000..ef14802dcbd17883086f5cf376d4aca95e7f2e73 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2477.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "3.1", + "shadow": "3.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 53, + 96 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2478.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2478.json" new file mode 100644 index 0000000000000000000000000000000000000000..766a196616780767793cee61153d0daa9e28effb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2478.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 93, + 8 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2479.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2479.json" new file mode 100644 index 0000000000000000000000000000000000000000..83f3ad66b3d345682c5437d10d8d461bf3f98d5f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2479.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 41, + 84 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2480.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2480.json" new file mode 100644 index 0000000000000000000000000000000000000000..d9b6e03cb0e608a9050209b39a656093fdda9990 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2480.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 94, + 43 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2481.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2481.json" new file mode 100644 index 0000000000000000000000000000000000000000..e365a8968421c7b53ad44d1a005e582d0c81458c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2481.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 36, + 50 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2482.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2482.json" new file mode 100644 index 0000000000000000000000000000000000000000..4f97803b743599b7c112031b4f8bda4065dc3062 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2482.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 9, + 31 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2483.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2483.json" new file mode 100644 index 0000000000000000000000000000000000000000..bdba9d6b1335ab08b54bd51cd44b834bb9a3a05d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2483.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 94, + 15 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2484.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2484.json" new file mode 100644 index 0000000000000000000000000000000000000000..3760967446f9bdad5f6988b703b616e5b908d210 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2484.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 56, + 32 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2485.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2485.json" new file mode 100644 index 0000000000000000000000000000000000000000..c404816defb7f79cc1de9bf29fd15de643a5e7bc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2485.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 3, + 98 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2486.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2486.json" new file mode 100644 index 0000000000000000000000000000000000000000..c0b09874285e4450e424139bdae19356a2f9625c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2486.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 19, + 85 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2487.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2487.json" new file mode 100644 index 0000000000000000000000000000000000000000..016942bdee8b7d1486b54ed7cbf4f6f841242f5a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2487.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "3.0", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 43, + 52 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2488.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2488.json" new file mode 100644 index 0000000000000000000000000000000000000000..4825cfc6040837aae238005318d283473cd47914 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2488.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 78, + 49 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2489.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2489.json" new file mode 100644 index 0000000000000000000000000000000000000000..81a533c172c51426e51246d0061343bec12dfb2a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2489.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 0, + 78 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2490.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2490.json" new file mode 100644 index 0000000000000000000000000000000000000000..bb5ca64965f5e73551eb5ad03f0836d8fbc87155 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2490.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 38, + 84 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2491.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2491.json" new file mode 100644 index 0000000000000000000000000000000000000000..3fa27e5b9267189503ef62a943ce6bdf19793490 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2491.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 70, + 65 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2492.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2492.json" new file mode 100644 index 0000000000000000000000000000000000000000..5240275c5aebd796a8717fddbb735f9ce1a777bf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2492.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 37, + 97 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2493.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2493.json" new file mode 100644 index 0000000000000000000000000000000000000000..f26d28f11a6eb74ac4002ac121737379444a34bf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2493.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 94, + 20 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2494.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2494.json" new file mode 100644 index 0000000000000000000000000000000000000000..1c4c672ec58d8fa8ddb9a4e832a819eab5ebbce0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2494.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 8, + 18 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2495.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2495.json" new file mode 100644 index 0000000000000000000000000000000000000000..f9277ec54913df192716d3c5c280de78a2f7c646 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2495.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 27, + 58 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2496.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2496.json" new file mode 100644 index 0000000000000000000000000000000000000000..511c27cb0c68b388613a4e3d2d577491ea8ad551 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2496.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 20, + 90 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2497.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2497.json" new file mode 100644 index 0000000000000000000000000000000000000000..7c9f2b53482fa25eddc5db7a5606dca2e43146f4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2497.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 72, + 14 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2498.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2498.json" new file mode 100644 index 0000000000000000000000000000000000000000..8c14a342cb4092a5feba65eb758fa443970675b6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2498.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 48, + 99 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2499.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2499.json" new file mode 100644 index 0000000000000000000000000000000000000000..7299f32b4ffddaad4e9c613a6cd14ad40047edf3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2499.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 12, + 27 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2500.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2500.json" new file mode 100644 index 0000000000000000000000000000000000000000..6d5fc97dd9249217b7aae32b1035b236d92906e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2500.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 14, + 16 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2501.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2501.json" new file mode 100644 index 0000000000000000000000000000000000000000..75107901832303109b49b9051616e35a74223249 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2501.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 42, + 60 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2502.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2502.json" new file mode 100644 index 0000000000000000000000000000000000000000..7e37fc7d6cd5755f6c6258c4c22a2662132ee85f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2502.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 54, + 73 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2503.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2503.json" new file mode 100644 index 0000000000000000000000000000000000000000..cc736a9539dcf650d656a7434f57fbd65f3b4ed8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2503.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 90, + 4 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2504.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2504.json" new file mode 100644 index 0000000000000000000000000000000000000000..69910df27babe0073e0de8e33413513d97eab70b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2504.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 28, + 12 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2505.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2505.json" new file mode 100644 index 0000000000000000000000000000000000000000..fa7143cbae8207c8da72d0248fe6a3cd457044bd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2505.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 100, + 87 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2506.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2506.json" new file mode 100644 index 0000000000000000000000000000000000000000..6d05c64e336f51bfe8481d6a8f55d41e543feae7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2506.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 47, + 100 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2507.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2507.json" new file mode 100644 index 0000000000000000000000000000000000000000..e2cb7718b9576699012b996c3b94dd50d040223c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2507.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 64, + 57 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2508.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2508.json" new file mode 100644 index 0000000000000000000000000000000000000000..baeec56adc8675148a6215672750429667d3d990 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2508.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 10, + 82 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2509.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2509.json" new file mode 100644 index 0000000000000000000000000000000000000000..1c66eddc971ac3ae051871805b7f11580f2b7f73 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2509.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 98, + 66 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2510.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2510.json" new file mode 100644 index 0000000000000000000000000000000000000000..88596defc213d999053a3b87ebce3b5be740e5c7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2510.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 46, + 78 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2511.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2511.json" new file mode 100644 index 0000000000000000000000000000000000000000..e17ad55157ed1adea0fe01f4bcd4729231ea3ac1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2511.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 41, + 86 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2512.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2512.json" new file mode 100644 index 0000000000000000000000000000000000000000..f4caaaf7df2b36531f72eb5b6199fa4756e75ccb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2512.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.1", + "shadow": "3.0", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 17, + 17 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2513.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2513.json" new file mode 100644 index 0000000000000000000000000000000000000000..86246b41a4528fe58e6fe86f706d1adda65e403a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2513.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 47, + 29 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2514.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2514.json" new file mode 100644 index 0000000000000000000000000000000000000000..492a2001474f2fd26d39f0b5d1e4fb72169cec31 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2514.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 22, + 89 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2515.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2515.json" new file mode 100644 index 0000000000000000000000000000000000000000..315ba065ce88990cc470db93687857b6ac18c041 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2515.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 79, + 77 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2516.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2516.json" new file mode 100644 index 0000000000000000000000000000000000000000..ea4b3a5bd0bc5d766ab71383b04176f1cd235c17 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2516.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 74, + 23 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2517.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2517.json" new file mode 100644 index 0000000000000000000000000000000000000000..283eda644adef18b2edcc38f37d85018bdf5fb65 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2517.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 78, + 55 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2518.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2518.json" new file mode 100644 index 0000000000000000000000000000000000000000..04528f1c6d5c9db42d4b607e1848594e15e2f613 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2518.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 43, + 88 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2519.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2519.json" new file mode 100644 index 0000000000000000000000000000000000000000..5c5da5b11fc5e1022f851f18129a78a3a2cb1a58 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2519.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 37, + 80 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2520.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2520.json" new file mode 100644 index 0000000000000000000000000000000000000000..5fa79c2a0c388ae74009c80e83fd0d79d24de707 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2520.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 24, + 17 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2521.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2521.json" new file mode 100644 index 0000000000000000000000000000000000000000..731676212f11329435bd07ae3e5e277ad643898a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2521.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 88, + 65 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2522.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2522.json" new file mode 100644 index 0000000000000000000000000000000000000000..5fa6c5d6c563b709200cad9c0f2ef038abc2bf7e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2522.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 1, + 64 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2523.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2523.json" new file mode 100644 index 0000000000000000000000000000000000000000..b51969a371fca284913815d923d2b2e0f4c6e6af --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2523.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 99, + 54 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2524.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2524.json" new file mode 100644 index 0000000000000000000000000000000000000000..d1786dfca980732d81e252d086d454328d57f4cf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2524.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 99, + 25 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2525.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2525.json" new file mode 100644 index 0000000000000000000000000000000000000000..5592cfa42e67c42fbd51c4467a8b4d2b9b845fec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2525.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 75, + 68 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2526.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2526.json" new file mode 100644 index 0000000000000000000000000000000000000000..e11b91cdcc6062bb6fab9dd722ab322bbe9e097d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2526.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 75, + 9 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2527.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2527.json" new file mode 100644 index 0000000000000000000000000000000000000000..4eb6fb7bc33b415a6f589fd3e86931c407511a2e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2527.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 45, + 61 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2528.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2528.json" new file mode 100644 index 0000000000000000000000000000000000000000..f840f04c12da82727365b782fcaaa97e385431ad --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2528.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 6, + 56 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2529.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2529.json" new file mode 100644 index 0000000000000000000000000000000000000000..7782f4678c4d633f437a3d36c9252ff45c3b04d3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2529.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 61, + 52 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2530.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2530.json" new file mode 100644 index 0000000000000000000000000000000000000000..c40700974b61fb53a43721203fcff6edb693090e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2530.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 53, + 61 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2531.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2531.json" new file mode 100644 index 0000000000000000000000000000000000000000..2f8c2590515bee46b57fb4ca310de0e02bcf97f9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2531.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 74, + 54 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2532.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2532.json" new file mode 100644 index 0000000000000000000000000000000000000000..c5eb1b2c88537130e3947588b5d97a1126eb6a1f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2532.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 55, + 21 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2533.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2533.json" new file mode 100644 index 0000000000000000000000000000000000000000..77c42c826566e75fdc11dd16a9a283f53229f6a9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2533.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 92, + 7 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2534.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2534.json" new file mode 100644 index 0000000000000000000000000000000000000000..33880ad9f9b90d4bc5c55234e60bac7dc3b86bf7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2534.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 23, + 31 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2535.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2535.json" new file mode 100644 index 0000000000000000000000000000000000000000..d03e933f7a694fe755c2d390e50899367f20dc9a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2535.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 51, + 90 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2536.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2536.json" new file mode 100644 index 0000000000000000000000000000000000000000..27f95a9245faec84dbd4c22928fe401c19e8e9ef --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2536.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 38, + 95 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2537.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2537.json" new file mode 100644 index 0000000000000000000000000000000000000000..a1a5902697e3498b9214c252cf67c0a1c1dd2406 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2537.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 37, + 82 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2538.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2538.json" new file mode 100644 index 0000000000000000000000000000000000000000..9d7b914dd0a834872f169edd3e071a9e9de9e2e9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2538.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 40, + 94 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2539.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2539.json" new file mode 100644 index 0000000000000000000000000000000000000000..6f77ced288149760836aeb3443fa97aeb770527f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2539.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 16, + 2 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2540.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2540.json" new file mode 100644 index 0000000000000000000000000000000000000000..a474c000a63d737310aea63d08004b0db9b8bc43 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2540.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 59, + 18 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2541.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2541.json" new file mode 100644 index 0000000000000000000000000000000000000000..46da4fea56e967ca8954a61e743682bae7e1c0d8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2541.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 58, + 12 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2542.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2542.json" new file mode 100644 index 0000000000000000000000000000000000000000..b644005e69e13f0ad6bccd0774c8470bec656bbc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2542.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 5, + 12 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2543.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2543.json" new file mode 100644 index 0000000000000000000000000000000000000000..e10a2304c807f59006fef7b8e06d033908bf6160 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2543.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 56, + 50 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2544.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2544.json" new file mode 100644 index 0000000000000000000000000000000000000000..8721c874a019d95888f0cb4353f4d374b4312a49 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2544.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 54, + 71 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2545.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2545.json" new file mode 100644 index 0000000000000000000000000000000000000000..785ed63fea7bba762bb114309ad43a08d0993518 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2545.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 91, + 53 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2546.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2546.json" new file mode 100644 index 0000000000000000000000000000000000000000..b329f4decbd29f790fc49a3352dae4e0cedb2cf2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2546.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 43, + 16 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2547.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2547.json" new file mode 100644 index 0000000000000000000000000000000000000000..1985316418a82cbed1a710cccef6a23de6a63066 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2547.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 43, + 100 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2548.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2548.json" new file mode 100644 index 0000000000000000000000000000000000000000..328e30f71fd4639de98cc8df94e83a10f16fb7f9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2548.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 91, + 82 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2549.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2549.json" new file mode 100644 index 0000000000000000000000000000000000000000..f254839580332fca80c02a8871d97a4ccbaa75c0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2549.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 7, + 39 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2550.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2550.json" new file mode 100644 index 0000000000000000000000000000000000000000..33e7405c7a9c72696f26fb0e2901cf2adde2a6fc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2550.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.0", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 5, + 52 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2551.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2551.json" new file mode 100644 index 0000000000000000000000000000000000000000..8450b2564c0a550fb5f53c5b3e46797b17c22441 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2551.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 34, + 15 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2552.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2552.json" new file mode 100644 index 0000000000000000000000000000000000000000..57f47ac91d3fe89e891e04688b0087c2ddffc793 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2552.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 19, + 100 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2553.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2553.json" new file mode 100644 index 0000000000000000000000000000000000000000..5ccba3bbc4fa13ed16e228f0972318a141a91707 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2553.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 33, + 80 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2554.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2554.json" new file mode 100644 index 0000000000000000000000000000000000000000..670d06c4955b4f4464083c99cbc997232b816a0f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2554.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 81, + 100 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2555.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2555.json" new file mode 100644 index 0000000000000000000000000000000000000000..d307536b4cbae251509dbcc442abd2344e1ed0e4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2555.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 34, + 36 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2556.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2556.json" new file mode 100644 index 0000000000000000000000000000000000000000..3f4f47f51556fad075f483c7fc2b427b25235dd9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2556.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 45, + 60 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2557.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2557.json" new file mode 100644 index 0000000000000000000000000000000000000000..ae2a00946a5b0f0b27a5bff3bf59dda8efb9f6f3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2557.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 16, + 35 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2558.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2558.json" new file mode 100644 index 0000000000000000000000000000000000000000..2408b638a3c6489959c2dfb17db4535db56e89af --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2558.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 59, + 50 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2559.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2559.json" new file mode 100644 index 0000000000000000000000000000000000000000..51c5420e42e98f299b2198473f71a8873cdd3e64 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2559.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 45, + 32 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2560.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2560.json" new file mode 100644 index 0000000000000000000000000000000000000000..e6417c6489e3c20419630bbd474a5bc22d3d1423 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2560.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 5, + 92 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2561.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2561.json" new file mode 100644 index 0000000000000000000000000000000000000000..8847dc18c284f5fe2fde3295eb25110265bdf812 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2561.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 44, + 52 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2562.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2562.json" new file mode 100644 index 0000000000000000000000000000000000000000..863ef89f94083f9928130403c08c83357259779c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2562.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 37, + 65 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2563.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2563.json" new file mode 100644 index 0000000000000000000000000000000000000000..fc8b8593a36176f288014c8c613f5b6e93b80b90 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2563.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 40, + 70 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2564.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2564.json" new file mode 100644 index 0000000000000000000000000000000000000000..9964ddc391ffc1eb28280d010750b0be72ee23d4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2564.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 49, + 37 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2565.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2565.json" new file mode 100644 index 0000000000000000000000000000000000000000..ff055cf2ca3442c78cdb6206c828977d2dcf5f5d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2565.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 18, + 90 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2566.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2566.json" new file mode 100644 index 0000000000000000000000000000000000000000..8db6a77157ad5d3cf8cee2b20800c6df6220bab2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2566.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 99, + 31 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2567.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2567.json" new file mode 100644 index 0000000000000000000000000000000000000000..8c32f279417ac592e03d96b6c3c4b54fcbc0f1c2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2567.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 93, + 32 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2568.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2568.json" new file mode 100644 index 0000000000000000000000000000000000000000..843f4ffae2be5eb4b179f4592820ef61c0623dc3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2568.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 71, + 99 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2569.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2569.json" new file mode 100644 index 0000000000000000000000000000000000000000..3a264682e46812b298e26892ce42db5b20bfc79e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2569.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 39, + 78 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2570.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2570.json" new file mode 100644 index 0000000000000000000000000000000000000000..1f3630755129ca6cf33721a8ebeb10bbcceff956 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2570.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 92, + 65 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2571.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2571.json" new file mode 100644 index 0000000000000000000000000000000000000000..02475edd9c18f1699e2d6f14755bea63edc47766 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2571.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 43, + 70 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2572.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2572.json" new file mode 100644 index 0000000000000000000000000000000000000000..b10e0a8f81429de2a9398cf6f8311dfa3a8ec700 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2572.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 7, + 5 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2573.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2573.json" new file mode 100644 index 0000000000000000000000000000000000000000..115a745b70e623962ebc02308881fca76c959de5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2573.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito Sans", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 52, + 97 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2574.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2574.json" new file mode 100644 index 0000000000000000000000000000000000000000..82dc774d89334e28c4cc5d634b48601b9b84add9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2574.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 98, + 25 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2575.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2575.json" new file mode 100644 index 0000000000000000000000000000000000000000..93504b8b29ff4a0103654638c4a2e276005c3c19 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2575.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 78, + 61 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2576.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2576.json" new file mode 100644 index 0000000000000000000000000000000000000000..b5133ecfe3e4d5637651b9c81e20514f95594e09 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2576.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 53, + 59 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2577.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2577.json" new file mode 100644 index 0000000000000000000000000000000000000000..f11b7ac66bcf1a32927b7ff054930b5ee6f26674 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2577.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 9, + 55 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2578.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2578.json" new file mode 100644 index 0000000000000000000000000000000000000000..3ab32f27c7172296531efc4ea8629e873e9a3a2a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2578.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 60, + 78 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2579.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2579.json" new file mode 100644 index 0000000000000000000000000000000000000000..374af8adba1926a8a9bfeb109ad90d29a99083be --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2579.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 59, + 97 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2580.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2580.json" new file mode 100644 index 0000000000000000000000000000000000000000..4de438591ac459131460ab569f91dc81d91f7d14 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2580.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 26, + 34 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2581.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2581.json" new file mode 100644 index 0000000000000000000000000000000000000000..9a375201b3e59e9451cbf9e39a2de677a2b68ebb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2581.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 6, + 97 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2582.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2582.json" new file mode 100644 index 0000000000000000000000000000000000000000..4b971717a07a1738692e9c18ca6901f734dd1de4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2582.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 0, + 59 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2583.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2583.json" new file mode 100644 index 0000000000000000000000000000000000000000..676d39a522afe3691896a77322f529e9832fa49f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2583.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 87, + 99 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2584.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2584.json" new file mode 100644 index 0000000000000000000000000000000000000000..f7f25cfb00abc063541d4ee6c1f8bdc44fe54908 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2584.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 38, + 13 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2585.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2585.json" new file mode 100644 index 0000000000000000000000000000000000000000..f436fb0980eff6cc457770139ad87da3097e0f33 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2585.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 82, + 89 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2586.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2586.json" new file mode 100644 index 0000000000000000000000000000000000000000..48e8ac08143ee75b3c71de1accc68c19601dc0e7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2586.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 54, + 7 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2587.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2587.json" new file mode 100644 index 0000000000000000000000000000000000000000..e78b7f8f25286fbd032df26a97e8a5f039985470 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2587.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 92, + 75 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2588.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2588.json" new file mode 100644 index 0000000000000000000000000000000000000000..e3f55e6d47b911f5b6cfd29075fe9d6ed2228c30 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2588.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 95, + 92 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2589.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2589.json" new file mode 100644 index 0000000000000000000000000000000000000000..c2ab89256e825ac9a475be723f65a76a4b0f0aa8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2589.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 13, + 19 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2590.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2590.json" new file mode 100644 index 0000000000000000000000000000000000000000..ba85c268dd70d85f77a88da24af61306b14fce55 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2590.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 89, + 70 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2591.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2591.json" new file mode 100644 index 0000000000000000000000000000000000000000..6adcc3a9b7c8c3a243d69203a32e9919e7a7d9bc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2591.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 80, + 48 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2592.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2592.json" new file mode 100644 index 0000000000000000000000000000000000000000..86a9536c87771d970bc90a1aa0ca8b6c4b71ac87 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2592.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 52, + 87 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2593.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2593.json" new file mode 100644 index 0000000000000000000000000000000000000000..6e431c0afbcbb479ced7554d4e936dcde178feb5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2593.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 18, + 55 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2594.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2594.json" new file mode 100644 index 0000000000000000000000000000000000000000..4a9ae207a50fc2f5d4222a7efe23bf8ade8f7f84 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2594.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 76, + 40 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2595.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2595.json" new file mode 100644 index 0000000000000000000000000000000000000000..0256314dbe74a55ae691f67539c112053eeee328 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2595.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 72, + 87 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2596.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2596.json" new file mode 100644 index 0000000000000000000000000000000000000000..f6b3c6b573c165658d6083bd8ba16d0c03e549c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2596.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 75, + 74 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2597.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2597.json" new file mode 100644 index 0000000000000000000000000000000000000000..653f7cf46cecf49aea6c365bdf7405dc9dff2f07 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2597.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 90, + 81 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2598.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2598.json" new file mode 100644 index 0000000000000000000000000000000000000000..c2fe43ab6a6cfc3286ffca72adba04ae626afccd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2598.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 57, + 28 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2599.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2599.json" new file mode 100644 index 0000000000000000000000000000000000000000..39f270f8f192efd9131c5d5913d234151a42def6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2599.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 22, + 70 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2600.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2600.json" new file mode 100644 index 0000000000000000000000000000000000000000..38a53c0b24b17795f194d6c95e6c4a351c6e6af3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2600.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 16, + 16 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2601.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2601.json" new file mode 100644 index 0000000000000000000000000000000000000000..ed2d8bd0659e9ecf37b5a8812810c5250e6b897d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2601.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 99, + 49 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2602.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2602.json" new file mode 100644 index 0000000000000000000000000000000000000000..2eae1c473200b5ca70e21e824ad33e3ac1d778b7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2602.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 61, + 18 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2603.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2603.json" new file mode 100644 index 0000000000000000000000000000000000000000..d76070ecf2c770372edca8dd478d0a4c461ac70e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2603.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 42, + 26 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2604.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2604.json" new file mode 100644 index 0000000000000000000000000000000000000000..2e5c48b8d15343742a274e2072f9b298f9ca4a85 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2604.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 34, + 58 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2605.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2605.json" new file mode 100644 index 0000000000000000000000000000000000000000..513d5796249da9624b50887c2985102c44357081 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2605.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 36, + 50 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2606.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2606.json" new file mode 100644 index 0000000000000000000000000000000000000000..cf587642f68cb413ac240baeb8c287c4578f3f73 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2606.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 21, + 51 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2607.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2607.json" new file mode 100644 index 0000000000000000000000000000000000000000..1d2fb179bfa0785e944b1b3b238d4b85389ec56a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2607.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 86, + 24 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2608.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2608.json" new file mode 100644 index 0000000000000000000000000000000000000000..39b7ed4d08d3aed2b667b71187ce6c2de3efca7d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2608.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 42, + 6 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2609.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2609.json" new file mode 100644 index 0000000000000000000000000000000000000000..d5380638c50db1af40a1d873961c84b634247cae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2609.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "3.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 7, + 37 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2610.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2610.json" new file mode 100644 index 0000000000000000000000000000000000000000..af2fe6d3f6eecebec2dd215e59f59e40c8d5e6e2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2610.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 62, + 56 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2611.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2611.json" new file mode 100644 index 0000000000000000000000000000000000000000..94b9bd2e679b959f00db1c720cfaecaec9835706 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2611.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 53, + 6 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2612.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2612.json" new file mode 100644 index 0000000000000000000000000000000000000000..fe31d251ba7e5bd4a1dff9a7f327acc51c4d0ee5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2612.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 45, + 29 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2613.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2613.json" new file mode 100644 index 0000000000000000000000000000000000000000..5e1e7e9d784a4d3d37bf1725d6ee3868fcc5c270 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2613.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 53, + 64 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2614.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2614.json" new file mode 100644 index 0000000000000000000000000000000000000000..9ea5ed9d925c32fdadb8b967157d74d8c8cdb60e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2614.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 48, + 57 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2615.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2615.json" new file mode 100644 index 0000000000000000000000000000000000000000..c558df4c71b2b0662f1570d58f959fee39df89ac --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2615.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 31, + 36 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2616.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2616.json" new file mode 100644 index 0000000000000000000000000000000000000000..e402a5d59548cc16aeaba441abf6008fdf524ee7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2616.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 48, + 3 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2617.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2617.json" new file mode 100644 index 0000000000000000000000000000000000000000..0d060d4687635a79a2c3335272c04999495cef90 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2617.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 38, + 20 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2618.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2618.json" new file mode 100644 index 0000000000000000000000000000000000000000..96c248cbdb685c30f165935d34e19045878a1b22 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2618.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 21, + 30 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2619.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2619.json" new file mode 100644 index 0000000000000000000000000000000000000000..1ac5a4a35ac29dddc0e37c3c68c7b60ea122cd49 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2619.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 66, + 75 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2620.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2620.json" new file mode 100644 index 0000000000000000000000000000000000000000..c2943bf4986acde48def81729a20908ca31aac5c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2620.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 34, + 87 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2621.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2621.json" new file mode 100644 index 0000000000000000000000000000000000000000..45a39bedb492dab063c76b24675ef06640b4cb76 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2621.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 18, + 66 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2622.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2622.json" new file mode 100644 index 0000000000000000000000000000000000000000..5a014069416047b82b63061f0f3a2ad78c42d8bf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2622.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 34, + 91 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2623.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2623.json" new file mode 100644 index 0000000000000000000000000000000000000000..ee32278243e66833ae8a680fb48c7d992765966c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2623.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 65, + 50 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2624.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2624.json" new file mode 100644 index 0000000000000000000000000000000000000000..cc0b29325d9587a12741a535b561d4e4bccd3b0f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2624.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 81, + 86 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2625.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2625.json" new file mode 100644 index 0000000000000000000000000000000000000000..2cec7e45431f91a0d0d9e77504867cc3c65b46b9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2625.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 66, + 58 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2626.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2626.json" new file mode 100644 index 0000000000000000000000000000000000000000..32baa4b713f6f7b4e573ee8f62a31505a97e965b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2626.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 42, + 57 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2627.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2627.json" new file mode 100644 index 0000000000000000000000000000000000000000..6f8181628001de29e117eee264fa4f1e6b8b5115 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2627.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 47, + 100 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2628.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2628.json" new file mode 100644 index 0000000000000000000000000000000000000000..ad2f939dcf7cef4140488563f8d32253f3ea3c88 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2628.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 35, + 85 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2629.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2629.json" new file mode 100644 index 0000000000000000000000000000000000000000..e7855d417ba4827126ffee17a5bcceeb80b7aa52 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2629.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 69, + 21 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2630.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2630.json" new file mode 100644 index 0000000000000000000000000000000000000000..d65aad26f45454dc708c703dbcba749ad014ff9b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2630.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 62, + 21 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2631.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2631.json" new file mode 100644 index 0000000000000000000000000000000000000000..44b913640cd4ed6355e2cd42df49f29f1ba7c9ba --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2631.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 76, + 75 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2632.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2632.json" new file mode 100644 index 0000000000000000000000000000000000000000..020fa0ae69920488b24bdbc6078a35bc5e6d57d2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2632.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 14, + 68 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2633.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2633.json" new file mode 100644 index 0000000000000000000000000000000000000000..cca379493a2f9e99fb73ae63b3e2a9b3ca7a3ac9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2633.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 51, + 24 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2634.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2634.json" new file mode 100644 index 0000000000000000000000000000000000000000..e0edb418e25c0da61d21c9af6b094034d8744037 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2634.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 70, + 24 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2635.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2635.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac9e81f90509897d0d4439b0751d0a832ea6f45e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2635.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 76, + 31 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2636.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2636.json" new file mode 100644 index 0000000000000000000000000000000000000000..1cc8e47c6e1c63895ef5fa0215358724cebbe43b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2636.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 52, + 69 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2637.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2637.json" new file mode 100644 index 0000000000000000000000000000000000000000..447527c97019d70bf62b57a839770da0e4e75d6d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2637.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "3.0", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 17, + 79 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2638.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2638.json" new file mode 100644 index 0000000000000000000000000000000000000000..d4efdf4f22d2b1bbcc6fb3694b83cf3857a516ed --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2638.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 39, + 32 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2639.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2639.json" new file mode 100644 index 0000000000000000000000000000000000000000..347af2c2b8bb62b5a4ff235f9885916002a485ed --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2639.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 79, + 3 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2640.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2640.json" new file mode 100644 index 0000000000000000000000000000000000000000..7547afc8a3902758f2297de58abdb836dc0bf3f7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2640.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 58, + 18 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2641.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2641.json" new file mode 100644 index 0000000000000000000000000000000000000000..3bc0d7c977558bb541d9e3139aeed7a6af0f102b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2641.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 35, + 58 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2642.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2642.json" new file mode 100644 index 0000000000000000000000000000000000000000..fdc9cf15052027cd05183abfdb889e6444bf39bf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2642.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 4, + 80 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2643.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2643.json" new file mode 100644 index 0000000000000000000000000000000000000000..9ba0dcce506105c58828f01845c4cac72162eaad --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2643.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 27, + 56 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2644.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2644.json" new file mode 100644 index 0000000000000000000000000000000000000000..aa15b961e61d7544a89053f9a8d9ccd6811e6f4b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2644.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 1, + 70 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2645.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2645.json" new file mode 100644 index 0000000000000000000000000000000000000000..57af0142bafaba8487f58b0350163aba4a81f854 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2645.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 64, + 66 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2646.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2646.json" new file mode 100644 index 0000000000000000000000000000000000000000..a8deb84a10f494fb738b2693953f60a5ed313898 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2646.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 97, + 72 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2647.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2647.json" new file mode 100644 index 0000000000000000000000000000000000000000..6508129482e65599ba92ca3c7dc9972d437e8bac --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2647.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 64, + 84 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2648.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2648.json" new file mode 100644 index 0000000000000000000000000000000000000000..c8637eb0d0cb1111137a41122379ba69c7398b82 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2648.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 39, + 61 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2649.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2649.json" new file mode 100644 index 0000000000000000000000000000000000000000..111b46eca2c74322c5094fbf523a06b849615222 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2649.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 69, + 37 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2650.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2650.json" new file mode 100644 index 0000000000000000000000000000000000000000..b776ed0fe9d8d2c3208d5b513e02414e63920345 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2650.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 89, + 46 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2651.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2651.json" new file mode 100644 index 0000000000000000000000000000000000000000..d7942baa5a1866eca63c191c414fbc54cdb179ad --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2651.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 98, + 43 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2652.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2652.json" new file mode 100644 index 0000000000000000000000000000000000000000..f7262d61802e4dbb8bc4a7af5729912430a3af7f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2652.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 34, + 33 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2653.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2653.json" new file mode 100644 index 0000000000000000000000000000000000000000..a07eac80e44c584d1098284a63d9b37ef5a89a4d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2653.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 22, + 74 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2654.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2654.json" new file mode 100644 index 0000000000000000000000000000000000000000..8833fe83317544620d5129a7b812689694b25e65 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2654.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 46, + 98 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2655.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2655.json" new file mode 100644 index 0000000000000000000000000000000000000000..f058532c9ae9fbefaed3d54d195eaa594826e11e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2655.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 89, + 73 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2656.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2656.json" new file mode 100644 index 0000000000000000000000000000000000000000..1e468d379c8b4db3161c9104852d2b5be62a7867 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2656.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 81, + 63 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2657.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2657.json" new file mode 100644 index 0000000000000000000000000000000000000000..5d41ea1659f749222b588a76b5b19c512b427dea --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2657.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 33, + 13 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2658.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2658.json" new file mode 100644 index 0000000000000000000000000000000000000000..4e7e85d7300c4c39c946730073bc04016e396270 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2658.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 78, + 59 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2659.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2659.json" new file mode 100644 index 0000000000000000000000000000000000000000..ce1438a96a0f303e733d5c8e6f0b543c7f78fb46 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2659.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 30, + 51 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2660.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2660.json" new file mode 100644 index 0000000000000000000000000000000000000000..b3d760482b52e3a28fab97ac209dc5e8298a0db3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2660.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 19, + 57 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2661.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2661.json" new file mode 100644 index 0000000000000000000000000000000000000000..356b4a51352dc07d210af2712518a01b176e8f09 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2661.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 46, + 13 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2662.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2662.json" new file mode 100644 index 0000000000000000000000000000000000000000..b54ab19fa70df47869efc0bf598b8d6773aa8209 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2662.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 92, + 1 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2663.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2663.json" new file mode 100644 index 0000000000000000000000000000000000000000..fdee1e1f53c4692555cdb850358706859508b7a0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2663.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 51, + 67 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2664.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2664.json" new file mode 100644 index 0000000000000000000000000000000000000000..7953951c08e906c1bddf994f106c2fa91c4e8634 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2664.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 79, + 72 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2665.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2665.json" new file mode 100644 index 0000000000000000000000000000000000000000..d55a3b805ebc7a2f1f59247b3acaed5743b356dc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2665.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 98, + 47 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2666.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2666.json" new file mode 100644 index 0000000000000000000000000000000000000000..cbac7a613f1cc50cdbeb569ddf36889404985402 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2666.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 84, + 96 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2667.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2667.json" new file mode 100644 index 0000000000000000000000000000000000000000..f9a13a49095b046e25a5569f9c15af6706831753 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2667.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 73, + 99 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2668.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2668.json" new file mode 100644 index 0000000000000000000000000000000000000000..861e643a1532d4c771c5f5c254629f760b13572e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2668.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 3, + 92 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2669.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2669.json" new file mode 100644 index 0000000000000000000000000000000000000000..e5571dc105de640e64c8ed1e082d7bca68f0b9b6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2669.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 8, + 17 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2670.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2670.json" new file mode 100644 index 0000000000000000000000000000000000000000..777137ec2e61c316623d8d07f7055689cd49d128 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2670.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 31, + 40 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2671.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2671.json" new file mode 100644 index 0000000000000000000000000000000000000000..acbc14b03619d83839a41caeff7ed2c02c887b37 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2671.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 81, + 33 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2672.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2672.json" new file mode 100644 index 0000000000000000000000000000000000000000..c1807f8a4fc31d4808e3e51da2a4cb147a3b475b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2672.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 0, + 78 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2673.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2673.json" new file mode 100644 index 0000000000000000000000000000000000000000..42b3ba774949f5ff7c2899e180496431e62d4989 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2673.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 41, + 50 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2674.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2674.json" new file mode 100644 index 0000000000000000000000000000000000000000..6ed6223a7f6ebc00fa818a0283ebd76d1b160c0f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2674.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 23, + 27 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2675.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2675.json" new file mode 100644 index 0000000000000000000000000000000000000000..2210d9aa4a35c3f657160c13774e152fc2a6b52a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2675.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 64, + 31 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2676.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2676.json" new file mode 100644 index 0000000000000000000000000000000000000000..4933568ede35a274e64e09ef5f1b51680b618a73 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2676.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 66, + 3 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2677.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2677.json" new file mode 100644 index 0000000000000000000000000000000000000000..39c356f8328e62a77a0efe2cc3930e200ef87efc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2677.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 33, + 65 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2678.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2678.json" new file mode 100644 index 0000000000000000000000000000000000000000..e58d5038ef6de9ba3e790462780e2133b5db208c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2678.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 89, + 43 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2679.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2679.json" new file mode 100644 index 0000000000000000000000000000000000000000..43cdef8cc8c2220517b8092c8aecb6a0bc2b736b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2679.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 38, + 33 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2680.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2680.json" new file mode 100644 index 0000000000000000000000000000000000000000..4781a0242b502063bad84db27a3084b06ee10f3d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2680.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 24, + 94 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2681.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2681.json" new file mode 100644 index 0000000000000000000000000000000000000000..241f056d770f3e721b5aa0485cb7476a0a52b072 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2681.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 15, + 43 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2682.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2682.json" new file mode 100644 index 0000000000000000000000000000000000000000..feb79cb645884fa3834a3e3428836f50187fe821 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2682.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 74, + 78 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2683.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2683.json" new file mode 100644 index 0000000000000000000000000000000000000000..b99990bf8397dfe07790cc2f9cea79c0a1bb0a6c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2683.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 0, + 35 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2684.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2684.json" new file mode 100644 index 0000000000000000000000000000000000000000..cab7432883127989889895cf4fffa6570e15eb86 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2684.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 37, + 23 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2685.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2685.json" new file mode 100644 index 0000000000000000000000000000000000000000..64dc979459b299c237152fe9d1e6d5c830735c58 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2685.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 15, + 78 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2686.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2686.json" new file mode 100644 index 0000000000000000000000000000000000000000..ff4c612ba75eb81d72a65540aca34901b87ce990 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2686.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 64, + 5 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2687.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2687.json" new file mode 100644 index 0000000000000000000000000000000000000000..69383d95d0822cb6d395acd04dd57d968c9bd90f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2687.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 1, + 74 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2688.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2688.json" new file mode 100644 index 0000000000000000000000000000000000000000..4b181c9dc2366d92b757f6302ec8d9c94e163eed --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2688.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 52, + 45 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2689.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2689.json" new file mode 100644 index 0000000000000000000000000000000000000000..b88daa7017ed803acc39f636b383e1fb7990e876 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2689.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 83, + 46 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2690.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2690.json" new file mode 100644 index 0000000000000000000000000000000000000000..5ee8706a41692211bcc5f13751cf4823585d65d6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2690.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 90, + 31 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2691.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2691.json" new file mode 100644 index 0000000000000000000000000000000000000000..534aa0f39c003a3c28c277c694e1023baeae968e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2691.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 73, + 81 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2692.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2692.json" new file mode 100644 index 0000000000000000000000000000000000000000..73359c8af98007c020e4c1d1ec2c02896a7284c2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2692.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 80, + 53 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2693.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2693.json" new file mode 100644 index 0000000000000000000000000000000000000000..b1ca1f3a20f0ac575843a2d5d5b054eb4e06c30b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2693.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 78, + 64 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2694.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2694.json" new file mode 100644 index 0000000000000000000000000000000000000000..8b2a83b2e6d23a7676e13ead32c2617c8fd1d3e5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2694.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 54, + 21 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2695.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2695.json" new file mode 100644 index 0000000000000000000000000000000000000000..eae21a914de32d516d9ac1badfc8384d76d70cb8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2695.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playwrite DK Uloopet Guides", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 7, + 9 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2696.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2696.json" new file mode 100644 index 0000000000000000000000000000000000000000..6911d835268cfc84e178471156c9bf18749f389e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2696.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 40, + 83 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2697.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2697.json" new file mode 100644 index 0000000000000000000000000000000000000000..e5e81fb0b2aeda6774e5ed2aea1b9198b0cbb943 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2697.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 92, + 73 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2698.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2698.json" new file mode 100644 index 0000000000000000000000000000000000000000..0014a420177978367168c548f645e1d47173a610 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2698.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 48, + 11 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2699.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2699.json" new file mode 100644 index 0000000000000000000000000000000000000000..291b42aa3e0eedba1d59b720573eb18603a00fa3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2699.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 81, + 28 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2700.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2700.json" new file mode 100644 index 0000000000000000000000000000000000000000..4a1406d7bf6441d385e9f85b669ed14d298b7d2d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2700.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 27, + 48 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2701.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2701.json" new file mode 100644 index 0000000000000000000000000000000000000000..7db7cdcd8d25307bc3996e19bc0bff38e29b784d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2701.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 9, + 55 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2702.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2702.json" new file mode 100644 index 0000000000000000000000000000000000000000..e14fd1eb0f3567b904e47c226ba1cdfa7ffbabd8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2702.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 58, + 22 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2703.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2703.json" new file mode 100644 index 0000000000000000000000000000000000000000..7248efdf3d8cb05d83a7c36b0db677b5c768b7d5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2703.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 21, + 20 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2704.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2704.json" new file mode 100644 index 0000000000000000000000000000000000000000..f3af5df5863d080d4342dde5ac05de56bb080d10 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2704.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 74, + 43 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2705.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2705.json" new file mode 100644 index 0000000000000000000000000000000000000000..8a47ef01026726c07e330253e9f8ce2ba4ef7841 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2705.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 44, + 10 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2706.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2706.json" new file mode 100644 index 0000000000000000000000000000000000000000..7ec246064d48da7b2e4b3b7cb3b7dcd7affc688c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2706.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 86, + 31 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2707.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2707.json" new file mode 100644 index 0000000000000000000000000000000000000000..48bc7e48465bb55fb53758cf84f77bc2a049adc5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2707.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 57, + 4 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2708.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2708.json" new file mode 100644 index 0000000000000000000000000000000000000000..bdaad0275722dd4a1b2bdfeec973792a8445a20c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2708.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 83, + 64 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2709.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2709.json" new file mode 100644 index 0000000000000000000000000000000000000000..e763c28f0d09a18c8754bc199db6ea873fc74c3e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2709.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 51, + 88 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2710.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2710.json" new file mode 100644 index 0000000000000000000000000000000000000000..506695405844d32493443a24249648ec5750f60f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2710.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 37, + 29 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2711.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2711.json" new file mode 100644 index 0000000000000000000000000000000000000000..b2e546ff4bef6bb7117899f524041b45baba0e8b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2711.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 35, + 22 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2712.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2712.json" new file mode 100644 index 0000000000000000000000000000000000000000..84ed47cb7ba88be330780b31d984623f836a7928 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2712.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 77, + 95 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2713.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2713.json" new file mode 100644 index 0000000000000000000000000000000000000000..d3fdb877a64db852b15fdb719de606d978b7672d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2713.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 75, + 11 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2714.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2714.json" new file mode 100644 index 0000000000000000000000000000000000000000..d7540c3a1bc7d1fbd001bfa34b06feb83dd9ec1c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2714.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 25, + 32 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2715.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2715.json" new file mode 100644 index 0000000000000000000000000000000000000000..2ae107a0d153c1a29ea0f0a2ae47ae1c0eb39849 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2715.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 39, + 72 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2716.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2716.json" new file mode 100644 index 0000000000000000000000000000000000000000..16faefb3400456fa4fb74746efc5f40cdbb6d5b3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2716.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 48, + 32 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2717.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2717.json" new file mode 100644 index 0000000000000000000000000000000000000000..8350bb2ed611c64b2592e3fe3cf94c6e557222cf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2717.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 97, + 87 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2718.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2718.json" new file mode 100644 index 0000000000000000000000000000000000000000..b3380ed8cbdacc523bfdc5850f89b019e6ba525e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2718.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 31, + 70 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2719.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2719.json" new file mode 100644 index 0000000000000000000000000000000000000000..d73ac02145f9516b6af69594d0fee6185bf1e0db --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2719.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 57, + 49 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2720.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2720.json" new file mode 100644 index 0000000000000000000000000000000000000000..a94bb6f53ebb17e761ea18af644aa67cdc78c14d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2720.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 99, + 58 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2721.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2721.json" new file mode 100644 index 0000000000000000000000000000000000000000..16fcd13e384ac81c70ffe16fba891cad9b2bc86c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2721.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 16, + 47 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2722.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2722.json" new file mode 100644 index 0000000000000000000000000000000000000000..625b1e3a3a1fdee24fa4206a69913267b8466f72 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2722.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 34, + 40 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2723.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2723.json" new file mode 100644 index 0000000000000000000000000000000000000000..2d939d55d442b41bfd58c29c2d7838f6f6506031 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2723.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 77, + 77 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2724.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2724.json" new file mode 100644 index 0000000000000000000000000000000000000000..cd3f53b03cca6ead3ed7e815cb45cf9f2f91620b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2724.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 29, + 38 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2725.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2725.json" new file mode 100644 index 0000000000000000000000000000000000000000..36d12bb627b28626dbe24b379bd441e1059dbaf9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2725.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 72, + 50 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2726.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2726.json" new file mode 100644 index 0000000000000000000000000000000000000000..88741658fa6d0057273a73b0d5c8282679ba5664 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2726.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 83, + 24 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2727.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2727.json" new file mode 100644 index 0000000000000000000000000000000000000000..6994b1b6525976e2e82da9e805a5ca2d3a8c7c72 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2727.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 11, + 68 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2728.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2728.json" new file mode 100644 index 0000000000000000000000000000000000000000..3e00b35a65e04443e94c566e9c8f08fc50b020fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2728.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 80, + 7 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2729.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2729.json" new file mode 100644 index 0000000000000000000000000000000000000000..2769deda9545cbd59db864820a066060514e7b2b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2729.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 85, + 17 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2730.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2730.json" new file mode 100644 index 0000000000000000000000000000000000000000..571e3b9835f850350919817ec3fd4e74ce92af0d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2730.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 60, + 33 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2731.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2731.json" new file mode 100644 index 0000000000000000000000000000000000000000..3079405216cd76ff1917e6cb01d6f751922b93c9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2731.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 86, + 64 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2732.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2732.json" new file mode 100644 index 0000000000000000000000000000000000000000..7c69811a18350aa9b39ca18151ccbaf3d65a5edf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2732.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 6, + 3 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2733.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2733.json" new file mode 100644 index 0000000000000000000000000000000000000000..12890ba6f6cc9b3c2c56ca3f8d7c89e22d809700 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2733.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 12, + 78 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2734.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2734.json" new file mode 100644 index 0000000000000000000000000000000000000000..334dd0d0fc8bf6de59d0f206d7276d4a8669afbf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2734.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 43, + 24 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2735.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2735.json" new file mode 100644 index 0000000000000000000000000000000000000000..1edd76bce510663487ca46eae4b54ba234b77890 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2735.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 66, + 48 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2736.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2736.json" new file mode 100644 index 0000000000000000000000000000000000000000..51e5eadcf49560ccf7b225de5c40e8346a009dba --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2736.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 63, + 82 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2737.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2737.json" new file mode 100644 index 0000000000000000000000000000000000000000..d7b70b41db867b9a3f0164000d903d7b7241adaa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2737.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 48, + 75 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2738.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2738.json" new file mode 100644 index 0000000000000000000000000000000000000000..2df9101aefb503da692aed8f63938fb58d797a98 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2738.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 82, + 85 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2739.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2739.json" new file mode 100644 index 0000000000000000000000000000000000000000..35dcc65a0c65df17e5c71e1babd683e63b482e20 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2739.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 91, + 27 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2740.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2740.json" new file mode 100644 index 0000000000000000000000000000000000000000..ec357b864510e1178f7083b4dce70ada464c5fde --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2740.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 64, + 98 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2741.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2741.json" new file mode 100644 index 0000000000000000000000000000000000000000..a7824bc36abd1f7415507d5312e9ecdc9ad899a2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2741.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 65, + 53 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2742.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2742.json" new file mode 100644 index 0000000000000000000000000000000000000000..60c917c21667cc817d33bc162745dc976d2643c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2742.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 61, + 62 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2743.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2743.json" new file mode 100644 index 0000000000000000000000000000000000000000..026a449c6ef8329917788f224b592a93313880c5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2743.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 92, + 56 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2744.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2744.json" new file mode 100644 index 0000000000000000000000000000000000000000..1ac41234d6c890f806d0b7628e00d0639a34adca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2744.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 57, + 14 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2745.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2745.json" new file mode 100644 index 0000000000000000000000000000000000000000..fb35d0063d3d7bd65df6ad9a1ef8e5fbe28e737a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2745.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 26, + 12 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2746.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2746.json" new file mode 100644 index 0000000000000000000000000000000000000000..8bc03504cba6bb93133836d3d131258069264409 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2746.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 10, + 8 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2747.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2747.json" new file mode 100644 index 0000000000000000000000000000000000000000..466ef8158bb9105ddf402cd82874acfeae9505b3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2747.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 38, + 71 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2748.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2748.json" new file mode 100644 index 0000000000000000000000000000000000000000..acd53fe63604335bafab19dbb2eec58bb9ee5d64 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2748.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 4, + 28 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2749.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2749.json" new file mode 100644 index 0000000000000000000000000000000000000000..50dac00be88965658bbde73f7b90010cf7035505 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2749.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 11, + 15 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2750.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2750.json" new file mode 100644 index 0000000000000000000000000000000000000000..cfc965a9b2995e6003fa1687b65f1855bbfc454c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2750.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 46, + 62 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2751.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2751.json" new file mode 100644 index 0000000000000000000000000000000000000000..b859d8ad57ecd46b37157411a83c6d0202525de7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2751.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 20, + 1 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2752.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2752.json" new file mode 100644 index 0000000000000000000000000000000000000000..54d04b14d3af4c6878b992c038bd0819ec4c83c0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2752.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 88, + 41 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2753.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2753.json" new file mode 100644 index 0000000000000000000000000000000000000000..45405298b66d21dbb2d7c6446a31d659317e0f48 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2753.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 84, + 60 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2754.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2754.json" new file mode 100644 index 0000000000000000000000000000000000000000..1e14142c618d5feec82018053e117c9ca495f927 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2754.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playwrite DK Uloopet Guides", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 14, + 33 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2755.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2755.json" new file mode 100644 index 0000000000000000000000000000000000000000..5476292f2bef46ae3a016a1e674da4136d6c5aa0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2755.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 100, + 4 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2756.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2756.json" new file mode 100644 index 0000000000000000000000000000000000000000..3cb19b62dbb2a512a77749ca1ecdda43296cc1dc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2756.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 24, + 72 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2757.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2757.json" new file mode 100644 index 0000000000000000000000000000000000000000..ae67ddd4a45aad4f48f9eaf019702088b9ae734d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2757.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 22, + 13 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2758.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2758.json" new file mode 100644 index 0000000000000000000000000000000000000000..0644942d984492e8d381f7ea112d062b66b045ae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2758.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 24, + 25 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2759.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2759.json" new file mode 100644 index 0000000000000000000000000000000000000000..74a83405d31ae1e39afa985816754a23e4aa3b16 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2759.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "3.0", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 30, + 90 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2760.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2760.json" new file mode 100644 index 0000000000000000000000000000000000000000..19ad739d39176353ccab9316aa880e88c9ca5afa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2760.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 68, + 49 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2761.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2761.json" new file mode 100644 index 0000000000000000000000000000000000000000..44ad241a431a232b4c2c9f32c4896d12f05467cb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2761.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 7, + 32 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2762.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2762.json" new file mode 100644 index 0000000000000000000000000000000000000000..4f17475b3d71bd4fb95b7efd6af85f18eeb8ca8f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2762.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 5, + 81 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2763.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2763.json" new file mode 100644 index 0000000000000000000000000000000000000000..909eba58c6a8fa0a2c50708e5b0c0729a24c2374 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2763.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 98, + 57 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2764.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2764.json" new file mode 100644 index 0000000000000000000000000000000000000000..0675fa0b1057bf6c24e8a81af1995cfcc3e11fca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2764.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 38, + 10 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2765.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2765.json" new file mode 100644 index 0000000000000000000000000000000000000000..94b1729470ba425ce843517b1720a5737fd37a5e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2765.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 65, + 91 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2766.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2766.json" new file mode 100644 index 0000000000000000000000000000000000000000..c5d5b85c85c7d85982883ca66874bd89e68a7a2b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2766.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 35, + 72 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2767.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2767.json" new file mode 100644 index 0000000000000000000000000000000000000000..5188564637d4e473d73b9b125b199352474e7bc3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2767.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 85, + 92 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2768.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2768.json" new file mode 100644 index 0000000000000000000000000000000000000000..b1a33e84e5a0e4fc8f89b12146906fc56d3d170b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2768.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 9, + 86 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2769.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2769.json" new file mode 100644 index 0000000000000000000000000000000000000000..1e241cee3f1bee88a7d2bf526f6d7dd6e57d39e5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2769.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 65, + 16 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2770.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2770.json" new file mode 100644 index 0000000000000000000000000000000000000000..745eff456d110ffe208e4b873001c3e9bdecf2b7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2770.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 62, + 87 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2771.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2771.json" new file mode 100644 index 0000000000000000000000000000000000000000..495aa92f811fad087dc30cfc50787eb65fd982bf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2771.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 99, + 22 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2772.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2772.json" new file mode 100644 index 0000000000000000000000000000000000000000..a3b623a70158cc9d46675e8045a3efbd19bb2c7f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2772.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 44, + 96 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2773.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2773.json" new file mode 100644 index 0000000000000000000000000000000000000000..a04416a6171770e71300a3bc7c5fa3bc01f14337 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2773.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 93, + 74 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2774.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2774.json" new file mode 100644 index 0000000000000000000000000000000000000000..2028f0ad864129958a84213ecb9b1b37f9bd0dd0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2774.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 41, + 21 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2775.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2775.json" new file mode 100644 index 0000000000000000000000000000000000000000..206312b0169a3090635c6612a095490507c7152d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2775.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 35, + 8 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2776.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2776.json" new file mode 100644 index 0000000000000000000000000000000000000000..859c7a536a46b235e65b57e7793c614d4bd3378f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2776.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 17, + 2 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2777.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2777.json" new file mode 100644 index 0000000000000000000000000000000000000000..9ccb1510c9021fece32c3132d5386d154fdf67fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2777.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 93, + 45 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2778.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2778.json" new file mode 100644 index 0000000000000000000000000000000000000000..c00d05bee328ecea77e7384850a0baa20d5952d8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2778.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 17, + 33 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2779.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2779.json" new file mode 100644 index 0000000000000000000000000000000000000000..b86da2ab8d2652b7ac2f43e6f80665ac3796effa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2779.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 86, + 99 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2780.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2780.json" new file mode 100644 index 0000000000000000000000000000000000000000..c3d6677a73da53c0b311731fbba9e1e6afb9e2db --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2780.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 55, + 76 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2781.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2781.json" new file mode 100644 index 0000000000000000000000000000000000000000..25fa5fc7aea79908a5eb9db2e99ee30422cae128 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2781.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 7, + 17 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2782.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2782.json" new file mode 100644 index 0000000000000000000000000000000000000000..85fe446a26fc24298c575f146950e80017fb991b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2782.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 94, + 19 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2783.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2783.json" new file mode 100644 index 0000000000000000000000000000000000000000..f923fa4f9005822bd0d07b6a3bb84f6c3f506db8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2783.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 85, + 5 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2784.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2784.json" new file mode 100644 index 0000000000000000000000000000000000000000..a7871b49f86e0979249ba4d7b5f951a2be5c9707 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2784.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 38, + 29 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2785.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2785.json" new file mode 100644 index 0000000000000000000000000000000000000000..0b9855705cc8a24c4b8be71047c1cda1fcc3b829 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2785.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 93, + 97 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2786.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2786.json" new file mode 100644 index 0000000000000000000000000000000000000000..1bb8afd49736b4dd88f0fac1807a5ba5a1b198ba --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2786.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 29, + 42 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2787.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2787.json" new file mode 100644 index 0000000000000000000000000000000000000000..5e5af847d3a852649780a115335259ffa8448b6f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2787.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 14, + 46 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2788.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2788.json" new file mode 100644 index 0000000000000000000000000000000000000000..c9d4d53ac3bfa1004a64275cac5615611613169a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2788.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 60, + 43 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2789.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2789.json" new file mode 100644 index 0000000000000000000000000000000000000000..6ee269bb55c9c803e8ccec65c8e2dbe593035878 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2789.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 86, + 3 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2790.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2790.json" new file mode 100644 index 0000000000000000000000000000000000000000..b8b56a5aa75fe357d998395d6c48c85805429c03 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2790.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 60, + 31 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2791.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2791.json" new file mode 100644 index 0000000000000000000000000000000000000000..7d54d1a4df5c71b3b79d76f4de23e2e336aaaee1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2791.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 62, + 32 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2792.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2792.json" new file mode 100644 index 0000000000000000000000000000000000000000..d9f10c3ecc7ea218237c060a33af72f58d488c15 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2792.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 58, + 50 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2793.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2793.json" new file mode 100644 index 0000000000000000000000000000000000000000..88a6ebe50b51670b094740501c125e31f0277dcb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2793.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 43, + 44 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2794.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2794.json" new file mode 100644 index 0000000000000000000000000000000000000000..a6e9aeeb9b2dda2624059173c29a5702dc179a9d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2794.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 6, + 56 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2795.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2795.json" new file mode 100644 index 0000000000000000000000000000000000000000..1cfb96c6f9c98f4b1256c7c8f77963f8847d6aff --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2795.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 31, + 12 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2796.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2796.json" new file mode 100644 index 0000000000000000000000000000000000000000..4eca2cb87f21e80c7d109dee3322c1227d54a2e4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2796.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 65, + 29 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2797.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2797.json" new file mode 100644 index 0000000000000000000000000000000000000000..491944056bd941c75e4d46f4fd1938a8a593de98 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2797.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 81, + 93 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2798.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2798.json" new file mode 100644 index 0000000000000000000000000000000000000000..bec7a518fb05b7fd652a6a4e302f2233afb787e4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2798.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 79, + 82 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2799.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2799.json" new file mode 100644 index 0000000000000000000000000000000000000000..e39d6777cb39570fe69acc487f9b4117c45d9e63 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2799.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 91, + 41 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2800.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2800.json" new file mode 100644 index 0000000000000000000000000000000000000000..c02caa3676856d8bf636d35e59e1ac0c1ee22c55 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2800.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 87, + 67 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2801.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2801.json" new file mode 100644 index 0000000000000000000000000000000000000000..70da0d5523d564634d8dadab142ed9187eb8ce26 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2801.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 85, + 52 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2802.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2802.json" new file mode 100644 index 0000000000000000000000000000000000000000..b26f1d2de24a8fe27f32f30d8fcd65a3fc8446d6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2802.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 5, + 7 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2803.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2803.json" new file mode 100644 index 0000000000000000000000000000000000000000..f2c35d44ae4ae3dd8a8667827fb7bed9b90b158e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2803.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 53, + 41 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2804.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2804.json" new file mode 100644 index 0000000000000000000000000000000000000000..6f245e52c06cde3f9f20c767c36327b2ebb25102 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2804.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 52, + 87 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2805.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2805.json" new file mode 100644 index 0000000000000000000000000000000000000000..cfcc28e711ade5882348e89992e1bfd1993be772 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2805.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 37, + 25 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2806.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2806.json" new file mode 100644 index 0000000000000000000000000000000000000000..9235752935307f70bd2740bd768c064643770404 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2806.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.2", + "shadow": "3.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 29, + 49 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2807.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2807.json" new file mode 100644 index 0000000000000000000000000000000000000000..b94d4b12adb9ad6146330f74a9bdcd807e36ddb3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2807.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 80, + 50 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2808.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2808.json" new file mode 100644 index 0000000000000000000000000000000000000000..923d5fb6cd7a26e286e3e8b3786e891f573080ab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2808.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 9, + 78 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2809.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2809.json" new file mode 100644 index 0000000000000000000000000000000000000000..1cf32a89f58bf798fb6f59cf53f2dee06b5e4511 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2809.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 60, + 12 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2810.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2810.json" new file mode 100644 index 0000000000000000000000000000000000000000..7adf645ef238dc290611ffa04d8879c7024c2cbe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2810.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 72, + 73 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2811.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2811.json" new file mode 100644 index 0000000000000000000000000000000000000000..301024e5b1370bf9414bed5c9ad083a28faede7b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2811.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 54, + 75 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2812.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2812.json" new file mode 100644 index 0000000000000000000000000000000000000000..1a761c47a1d34dcaabddf2466c461cd5c5b13575 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2812.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 63, + 45 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2813.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2813.json" new file mode 100644 index 0000000000000000000000000000000000000000..855a48f87e163aee41c2fe0ad74f37d36db6791b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2813.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 25, + 18 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2814.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2814.json" new file mode 100644 index 0000000000000000000000000000000000000000..791f406a02579f7590f0d97f45bb85aeb697cdf4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2814.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 53, + 75 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2815.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2815.json" new file mode 100644 index 0000000000000000000000000000000000000000..d8618bd1aff8d7293a649225564d4c740e295eb5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2815.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 68, + 68 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2816.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2816.json" new file mode 100644 index 0000000000000000000000000000000000000000..a11aecf8cf2b9e9c2de0ce0279730f25ed321540 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2816.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 61, + 88 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2817.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2817.json" new file mode 100644 index 0000000000000000000000000000000000000000..ca41d5e5ac9b6bac445ebe31a094e9ca431ccc3f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2817.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 22, + 1 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2818.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2818.json" new file mode 100644 index 0000000000000000000000000000000000000000..e362ca9abe39e61a4ad6d4b653d6f13a67c30bb5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2818.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 62, + 93 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2819.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2819.json" new file mode 100644 index 0000000000000000000000000000000000000000..50a59fb2f9ed07033aa1170af5362ac8533b7439 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2819.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 18, + 61 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2820.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2820.json" new file mode 100644 index 0000000000000000000000000000000000000000..41d22f8f6e79cc6be25509c337e4bb8b37a1484d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2820.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 11, + 80 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2821.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2821.json" new file mode 100644 index 0000000000000000000000000000000000000000..1abdbdc164f370638957e36b844a2f0a2028041a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2821.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 24, + 20 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2822.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2822.json" new file mode 100644 index 0000000000000000000000000000000000000000..4602d15b3f46efeba84f6fd4d01d1e4afdad9c93 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2822.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 39, + 28 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2823.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2823.json" new file mode 100644 index 0000000000000000000000000000000000000000..2ea82dd2606499ef3ebff072b80440c2da4ac100 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2823.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 84, + 27 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2824.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2824.json" new file mode 100644 index 0000000000000000000000000000000000000000..420d3bb17820995330a60846dfca114b87bb1cdd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2824.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 77, + 55 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2825.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2825.json" new file mode 100644 index 0000000000000000000000000000000000000000..4929d436ef00142851c5a11da715addf72d062c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2825.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 63, + 96 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2826.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2826.json" new file mode 100644 index 0000000000000000000000000000000000000000..03b9bb7d18b034e957eb9eef9691383cd370cf74 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2826.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 92, + 36 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2827.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2827.json" new file mode 100644 index 0000000000000000000000000000000000000000..6b1e330c58b393c6600dfe097fd6f0ef1dd6c351 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2827.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 37, + 6 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2828.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2828.json" new file mode 100644 index 0000000000000000000000000000000000000000..be5e0bc0acd8d38955c0fe53ee3b05d4155ddf9f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2828.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 11, + 89 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2829.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2829.json" new file mode 100644 index 0000000000000000000000000000000000000000..516fee3263cdff5900459b5a233bfa77321380bd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2829.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 29, + 84 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2830.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2830.json" new file mode 100644 index 0000000000000000000000000000000000000000..566b6be29b5c1f2645c4662c9fcb59e55b0a66e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2830.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 99, + 89 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2831.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2831.json" new file mode 100644 index 0000000000000000000000000000000000000000..237a769b54e608cd8b70be22f0dd82799f0b8821 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2831.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 36, + 89 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2832.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2832.json" new file mode 100644 index 0000000000000000000000000000000000000000..847ac95476d8f4fb5b52dd8d027f3f044d7fd76c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2832.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 55, + 76 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2833.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2833.json" new file mode 100644 index 0000000000000000000000000000000000000000..f83403a19259e2c2bba2e7cba82e71867eb51987 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2833.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 33, + 99 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2834.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2834.json" new file mode 100644 index 0000000000000000000000000000000000000000..93965283560137b69dd584d60622695968bfc721 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2834.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 83, + 57 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2835.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2835.json" new file mode 100644 index 0000000000000000000000000000000000000000..3addc7ef3fbaa7b7cd2a134e0fa1f59ba8b8e4ba --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2835.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 100, + 21 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2836.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2836.json" new file mode 100644 index 0000000000000000000000000000000000000000..4d156c20d37bd85392df5a31e501314b8076aafb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2836.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 75, + 13 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2837.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2837.json" new file mode 100644 index 0000000000000000000000000000000000000000..502349636ed28474f838d99355c9d0e115adec6c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2837.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 60, + 44 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2838.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2838.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac47043a9311303aaa6508ffaa4b4f8c943f2d79 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2838.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 47, + 78 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2839.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2839.json" new file mode 100644 index 0000000000000000000000000000000000000000..d35d7c2859ff88ed49d8c8fab240c260b95bb17b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2839.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 81, + 18 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2840.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2840.json" new file mode 100644 index 0000000000000000000000000000000000000000..2e8154af17c9ad284d725bb8126a8ba938772f8d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2840.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 16, + 46 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2841.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2841.json" new file mode 100644 index 0000000000000000000000000000000000000000..016686426b1b475e452c28e09dc2b44d23ed629e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2841.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 70, + 52 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2842.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2842.json" new file mode 100644 index 0000000000000000000000000000000000000000..ea830fb4d5f602c6fadabdf87b7d40f7d57dde15 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2842.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 56, + 84 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2843.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2843.json" new file mode 100644 index 0000000000000000000000000000000000000000..fd70913ecbe5d4972f08f096989d56d55feb7caa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2843.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 84, + 58 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2844.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2844.json" new file mode 100644 index 0000000000000000000000000000000000000000..a643acc7bf0120ad36130298c54a4414a652f5b1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2844.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 84, + 30 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2845.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2845.json" new file mode 100644 index 0000000000000000000000000000000000000000..755a6f4040216e9faf877d359a296a15cfc1b0eb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2845.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 49, + 54 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2846.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2846.json" new file mode 100644 index 0000000000000000000000000000000000000000..822bc5fbed0d99bfb32ffd6c0522a151bf5d46e3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2846.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 70, + 50 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2847.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2847.json" new file mode 100644 index 0000000000000000000000000000000000000000..9a860cb73a8546c225ed878a8ea2951c1c6d5294 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2847.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 46, + 3 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2848.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2848.json" new file mode 100644 index 0000000000000000000000000000000000000000..bd2de16a48de2b442ac2302f4748f8f15ed13444 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2848.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 23, + 97 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2849.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2849.json" new file mode 100644 index 0000000000000000000000000000000000000000..291cbd915fdda7f9b4111790defea8de54f1389d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2849.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 48, + 46 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2850.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2850.json" new file mode 100644 index 0000000000000000000000000000000000000000..62ca2300d24b9d6ab697606971f0201e4cc2da9a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2850.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 71, + 15 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2851.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2851.json" new file mode 100644 index 0000000000000000000000000000000000000000..da8410a1e79382d1ad7a8146c8c3f198cf1d7dc5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2851.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 4, + 100 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2852.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2852.json" new file mode 100644 index 0000000000000000000000000000000000000000..a09e120a8af4e1625b9b45f783429e8fc127457c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2852.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 67, + 56 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2853.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2853.json" new file mode 100644 index 0000000000000000000000000000000000000000..32045bec5125867ddd23525d5f6c8168bd667b37 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2853.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 47, + 29 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2854.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2854.json" new file mode 100644 index 0000000000000000000000000000000000000000..1bc9a923342d033ef2883bdc834a7e5daeffa2b0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2854.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 27, + 18 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2855.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2855.json" new file mode 100644 index 0000000000000000000000000000000000000000..e2676f542ca951cbea46155f17bc0f00268d4ae0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2855.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 93, + 43 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2856.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2856.json" new file mode 100644 index 0000000000000000000000000000000000000000..7ec1847136508200b3501706b6dee60344ea5c4a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2856.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 18, + 80 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2857.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2857.json" new file mode 100644 index 0000000000000000000000000000000000000000..bd850909b906fbbba62da212598f7f0e68571050 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2857.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 12, + 61 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2858.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2858.json" new file mode 100644 index 0000000000000000000000000000000000000000..717ef7ed8fce5d6a2301b48b323fe319b5925b3e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2858.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 59, + 80 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2859.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2859.json" new file mode 100644 index 0000000000000000000000000000000000000000..fe8165e285ab18f1184ca67a11e01c8ebf01361c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2859.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 75, + 43 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2860.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2860.json" new file mode 100644 index 0000000000000000000000000000000000000000..ff894bef3af715f34df590883f5bfa6562750b88 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2860.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 67, + 90 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2861.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2861.json" new file mode 100644 index 0000000000000000000000000000000000000000..b7ecd01f06f6a167b436a29ca903b5d25ec34f27 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2861.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 0, + 5 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2862.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2862.json" new file mode 100644 index 0000000000000000000000000000000000000000..a2fff4e451466eb51ce63a74c6378db1955d24e4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2862.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 13, + 62 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2863.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2863.json" new file mode 100644 index 0000000000000000000000000000000000000000..7d451ab1a57655290d0f54b470fc555274ba0202 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2863.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 35, + 44 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2864.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2864.json" new file mode 100644 index 0000000000000000000000000000000000000000..57af7c766e2b41b94e8df1c0882b17c74b7ba882 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2864.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.3", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 74, + 38 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2865.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2865.json" new file mode 100644 index 0000000000000000000000000000000000000000..246835cbc747700c013ffdb706273471dd3b3776 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2865.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 74, + 39 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2866.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2866.json" new file mode 100644 index 0000000000000000000000000000000000000000..3bfb90546a3261b537c6719eb4db959012e47166 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2866.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 17, + 19 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2867.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2867.json" new file mode 100644 index 0000000000000000000000000000000000000000..e8321db2e9b11ce9d3fcbfca4d129ff825192363 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2867.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 34, + 77 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2868.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2868.json" new file mode 100644 index 0000000000000000000000000000000000000000..a97299fa46a8cc54ecb9a79fa0a51f9829f9caa5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2868.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 23, + 45 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2869.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2869.json" new file mode 100644 index 0000000000000000000000000000000000000000..992a770940ad285b0438c6eb5989add3825415d8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2869.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 29, + 54 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2870.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2870.json" new file mode 100644 index 0000000000000000000000000000000000000000..7155512228a70bd4916853d342b944d60590ef34 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2870.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 79, + 82 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2871.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2871.json" new file mode 100644 index 0000000000000000000000000000000000000000..39b6f2c22102e72363017fd274899ed3f3225ae3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2871.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 57, + 11 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2872.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2872.json" new file mode 100644 index 0000000000000000000000000000000000000000..b3a57c491dedff92b62e347cfe1d49d3338771c7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2872.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 20, + 33 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2873.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2873.json" new file mode 100644 index 0000000000000000000000000000000000000000..51ec17762e689a37e7182a63ba98af89535382fa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2873.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 40, + 46 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2874.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2874.json" new file mode 100644 index 0000000000000000000000000000000000000000..de6c9273e6459167394dd51150d16a2da6d7ba07 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2874.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 13, + 51 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2875.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2875.json" new file mode 100644 index 0000000000000000000000000000000000000000..a748d8edd93d01472c69a13877098513073cff0a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2875.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 26, + 57 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2876.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2876.json" new file mode 100644 index 0000000000000000000000000000000000000000..bb6b70a09dbb358fdc65fa8fceb669e6c5c6b383 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2876.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 90, + 98 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2877.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2877.json" new file mode 100644 index 0000000000000000000000000000000000000000..a5d08e677e087c53da449505707679441bf60325 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2877.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 43, + 26 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2878.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2878.json" new file mode 100644 index 0000000000000000000000000000000000000000..03d36bce101cb8d8cae9ec3e389d8bb4678b4ab5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2878.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 81, + 60 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2879.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2879.json" new file mode 100644 index 0000000000000000000000000000000000000000..b1ac293f9483d98d21da7e7664d7d9f2f82fb871 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2879.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 2, + 5 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2880.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2880.json" new file mode 100644 index 0000000000000000000000000000000000000000..227fa5ac01e4e8cebe56ff9f916dcd832f1166a8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2880.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 65, + 6 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2881.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2881.json" new file mode 100644 index 0000000000000000000000000000000000000000..972bc80c55119f69baf6af89020e9842568f1c98 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2881.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 6, + 0 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2882.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2882.json" new file mode 100644 index 0000000000000000000000000000000000000000..bc44d20dabb21c185888f3d4da4433bba282e058 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2882.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 58, + 70 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2883.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2883.json" new file mode 100644 index 0000000000000000000000000000000000000000..7248a2ebf3432888ad3fed19620c2a10bed142ca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2883.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 36, + 57 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2884.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2884.json" new file mode 100644 index 0000000000000000000000000000000000000000..b08a3a929a7689b99d77c139bf6fe32927880d8e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2884.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 35, + 35 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2885.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2885.json" new file mode 100644 index 0000000000000000000000000000000000000000..ad67d0f749ada9a5ac51a2fc0ee207463dde62b0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2885.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 53, + 27 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2886.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2886.json" new file mode 100644 index 0000000000000000000000000000000000000000..192fa515c0d667502ab6eb0bad53ffc5d7d6a8c7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2886.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 50, + 16 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2887.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2887.json" new file mode 100644 index 0000000000000000000000000000000000000000..bf9856ec2331aeeff5efa656066025a70388226a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2887.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 76, + 46 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2888.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2888.json" new file mode 100644 index 0000000000000000000000000000000000000000..084c06be345855ff90c8344cae6b62efbcc3e6f3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2888.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 56, + 38 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2889.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2889.json" new file mode 100644 index 0000000000000000000000000000000000000000..719eecbca86ca5761bb4958f36e65ac792c44e25 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2889.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 24, + 51 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2890.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2890.json" new file mode 100644 index 0000000000000000000000000000000000000000..e088b44c3728adc8fff79cc940ffe2be645a5e18 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2890.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 20, + 40 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2891.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2891.json" new file mode 100644 index 0000000000000000000000000000000000000000..f57eff9a4f77355d788467669cbf213f904114e4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2891.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 3, + 24 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2892.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2892.json" new file mode 100644 index 0000000000000000000000000000000000000000..a062c2eec64320a0c066379b61acfac88d6fafae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2892.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 98, + 58 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2893.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2893.json" new file mode 100644 index 0000000000000000000000000000000000000000..695ac98fd021b2549952c8bd3ea504ad82ad3db1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2893.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 29, + 26 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2894.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2894.json" new file mode 100644 index 0000000000000000000000000000000000000000..183a4334b4a671fc330a177447f67a01fd24ffd4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2894.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 80, + 50 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2895.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2895.json" new file mode 100644 index 0000000000000000000000000000000000000000..ecc0d3de5b94ac6822a4c02651006b2b2fed8057 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2895.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 68, + 88 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2896.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2896.json" new file mode 100644 index 0000000000000000000000000000000000000000..801ecae8c23f9aa9222c98c273da34f93ba0e72e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2896.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 21, + 69 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2897.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2897.json" new file mode 100644 index 0000000000000000000000000000000000000000..52aebc6a14306a4b437c1a150fe1644b8a526fec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2897.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 92, + 59 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2898.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2898.json" new file mode 100644 index 0000000000000000000000000000000000000000..43e45160455d514b517e6965e1ba448a37cf0707 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2898.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 37, + 55 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2899.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2899.json" new file mode 100644 index 0000000000000000000000000000000000000000..2d0aa22f2b03df9508a11f038f9840b7eeb8c256 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2899.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 76, + 86 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2900.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2900.json" new file mode 100644 index 0000000000000000000000000000000000000000..a132edb78db393624fa299ef60265ac061c0ae44 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2900.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 93, + 46 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2901.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2901.json" new file mode 100644 index 0000000000000000000000000000000000000000..e7d273a9d71589853765ad69b5836809e9ff3ff1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2901.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 16, + 79 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2902.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2902.json" new file mode 100644 index 0000000000000000000000000000000000000000..06ed9e49b867d8d3ccfca41ecff514fd1d9ac9c2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2902.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 3, + 32 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2903.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2903.json" new file mode 100644 index 0000000000000000000000000000000000000000..f01a3cbdfff5919fccc546d4f3d6b4a9b32c4a97 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2903.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 98, + 4 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2904.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2904.json" new file mode 100644 index 0000000000000000000000000000000000000000..857f3044661b4d64a94f3153b06786d7780544fa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2904.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "3.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 62, + 66 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2905.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2905.json" new file mode 100644 index 0000000000000000000000000000000000000000..4e4dc6a00402950147c3a1a7dc066c2a8b02beab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2905.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 26, + 9 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2906.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2906.json" new file mode 100644 index 0000000000000000000000000000000000000000..c36f75e28afca4ae7b7b9bbacf7508582e19dd83 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2906.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 88, + 25 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2907.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2907.json" new file mode 100644 index 0000000000000000000000000000000000000000..df60081afc8dd2f47be626bd1b130b9e2f014295 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2907.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 29, + 89 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2908.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2908.json" new file mode 100644 index 0000000000000000000000000000000000000000..6ea4764a3d93d511b7b12ca9b9fde7c136c5109d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2908.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 7, + 17 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2909.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2909.json" new file mode 100644 index 0000000000000000000000000000000000000000..8ea1a9e4c04ec7b16890b35a8f7046a7cb7ef5b0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2909.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 75, + 13 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2910.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2910.json" new file mode 100644 index 0000000000000000000000000000000000000000..f16cf0e4e324d567b80dc8c77e54fdc38796c8fa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2910.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 16, + 35 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2911.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2911.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f52e1f9f3385406600b4daf1896c68573948e69 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2911.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 39, + 59 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2912.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2912.json" new file mode 100644 index 0000000000000000000000000000000000000000..b4ef893f659405ada6739d3ea97df81f1e9d922a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2912.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 8, + 62 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2913.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2913.json" new file mode 100644 index 0000000000000000000000000000000000000000..f6cf494801505391c8725979a7c3f1255069076f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2913.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 61, + 43 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2914.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2914.json" new file mode 100644 index 0000000000000000000000000000000000000000..e0af9cb0ef919b09fa9d5d15ea920e1a4634f5e6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2914.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 23, + 8 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2915.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2915.json" new file mode 100644 index 0000000000000000000000000000000000000000..d54551994982fb6ea15e79230d7e50102ab6e548 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2915.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 79, + 70 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2916.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2916.json" new file mode 100644 index 0000000000000000000000000000000000000000..9ecd27fd2cfd6ec79d8071b82d55401ef7e3dcfd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2916.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 47, + 13 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2917.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2917.json" new file mode 100644 index 0000000000000000000000000000000000000000..3b057954128cfff6b8a312e5d4130ab50b830f9a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2917.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 23, + 99 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2918.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2918.json" new file mode 100644 index 0000000000000000000000000000000000000000..3f60d7cf619113724b5668a3885d8d5e2d2a09fd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2918.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "3.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 99, + 37 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2919.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2919.json" new file mode 100644 index 0000000000000000000000000000000000000000..a5b38fcf9fced4874057e85f43ba20c52b0c8986 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2919.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 78, + 100 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2920.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2920.json" new file mode 100644 index 0000000000000000000000000000000000000000..226c01b292cff916dcbff59f2fbf062c2d2d8f7b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2920.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 85, + 22 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2921.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2921.json" new file mode 100644 index 0000000000000000000000000000000000000000..521b818ce264cfb93a7fc6acc2af2c0bfdc49099 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2921.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 25, + 30 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2922.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2922.json" new file mode 100644 index 0000000000000000000000000000000000000000..28ae587e3aa296e29959859c9f27a1416b6af90f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2922.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 73, + 37 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2923.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2923.json" new file mode 100644 index 0000000000000000000000000000000000000000..a92e827d19ce517a26374e3923c73886365ae6cf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2923.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 10, + 13 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2924.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2924.json" new file mode 100644 index 0000000000000000000000000000000000000000..5f30a2c5774b5220733accfbf883e866620ed0d9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2924.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 86, + 1 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2925.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2925.json" new file mode 100644 index 0000000000000000000000000000000000000000..48a4f82bd5421856d275b89e6dee3dbb81d0571a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2925.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 60, + 20 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2926.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2926.json" new file mode 100644 index 0000000000000000000000000000000000000000..4636e50f0d44e959c0213347de616a9bb05bfa4c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2926.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 38, + 76 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2927.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2927.json" new file mode 100644 index 0000000000000000000000000000000000000000..a3c61642357b7888d5e9e64e78f0dda3e4ee7f52 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2927.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 96, + 38 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2928.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2928.json" new file mode 100644 index 0000000000000000000000000000000000000000..887f5828335d31eb400e28d9116add2cefa497e9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2928.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 32, + 46 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2929.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2929.json" new file mode 100644 index 0000000000000000000000000000000000000000..6c72282c5f6c083c8f6b0acf3ba3647eec43c106 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2929.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 4, + 25 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2930.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2930.json" new file mode 100644 index 0000000000000000000000000000000000000000..801063c3ec60ab9d114c25e4f9dbe1fbe680ea29 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2930.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 38, + 7 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2931.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2931.json" new file mode 100644 index 0000000000000000000000000000000000000000..62c43940bd88de392e71fa72bebeb4aeb4404efe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2931.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 29, + 74 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2932.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2932.json" new file mode 100644 index 0000000000000000000000000000000000000000..f1cc9f69824895297a9c021bf46ded850625e2d3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2932.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 92, + 48 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2933.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2933.json" new file mode 100644 index 0000000000000000000000000000000000000000..cccdfd90f4d0ffbe98acc10a8b680261cb268190 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2933.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 84, + 37 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2934.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2934.json" new file mode 100644 index 0000000000000000000000000000000000000000..ee1f703a3e089760b903eee98334f44f0de965c0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2934.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 76, + 57 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2935.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2935.json" new file mode 100644 index 0000000000000000000000000000000000000000..6c33bf152e1915bd610beae5304169ac626b3538 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2935.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 58, + 26 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2936.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2936.json" new file mode 100644 index 0000000000000000000000000000000000000000..23c0d63d549d2c4d25a2ee453d95ab346fdcaaab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2936.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 44, + 9 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2937.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2937.json" new file mode 100644 index 0000000000000000000000000000000000000000..93d3f8568fb2db9821284d23c3ad0ee0757b8970 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2937.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 41, + 11 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2938.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2938.json" new file mode 100644 index 0000000000000000000000000000000000000000..24b6ed7faaed57ba26a2ccf3dc1fcfa11688b950 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2938.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 77, + 81 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2939.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2939.json" new file mode 100644 index 0000000000000000000000000000000000000000..84ff9c05cd952300fbdc0c7165e27050815b7dd1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2939.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 42, + 70 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2940.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2940.json" new file mode 100644 index 0000000000000000000000000000000000000000..1cffcdf490998f2edc952e72ab479f9d74de24b6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2940.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 29, + 75 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2941.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2941.json" new file mode 100644 index 0000000000000000000000000000000000000000..128be4566010951038d0e5a20c6fb6ba91dcec22 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2941.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 19, + 76 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2942.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2942.json" new file mode 100644 index 0000000000000000000000000000000000000000..7c15fc45d6493bb89ea902018f85bb4254141096 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2942.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 4, + 95 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2943.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2943.json" new file mode 100644 index 0000000000000000000000000000000000000000..8aac39810f06bddecce96ae3cc24af5964372d97 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2943.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 64, + 16 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2944.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2944.json" new file mode 100644 index 0000000000000000000000000000000000000000..6f1861a03287fe14b8b089ea195da6da8457c378 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2944.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 73, + 5 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2945.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2945.json" new file mode 100644 index 0000000000000000000000000000000000000000..cdfb53347480670744eaecf3eb8448b49b2d46be --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2945.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 34, + 17 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2946.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2946.json" new file mode 100644 index 0000000000000000000000000000000000000000..3d6adec4b2134024fdb53c44137d14a4dfc865ef --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2946.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 15, + 30 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2947.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2947.json" new file mode 100644 index 0000000000000000000000000000000000000000..b2adee8ab76c45ceb9b68194f4527be5afc45322 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2947.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 12, + 66 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2948.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2948.json" new file mode 100644 index 0000000000000000000000000000000000000000..a430e916bc22e543595e5d0420333e1bc1b71306 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2948.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 46, + 81 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2949.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2949.json" new file mode 100644 index 0000000000000000000000000000000000000000..c50bb8156edff9e79377c28db7448a3f681de945 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2949.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 38, + 27 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2950.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2950.json" new file mode 100644 index 0000000000000000000000000000000000000000..93f162a8e1d7a5d88f8d778f409cedadd26c3c5c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2950.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 3, + 78 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2951.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2951.json" new file mode 100644 index 0000000000000000000000000000000000000000..6a043f7bd4d398b1461a8ec2152b7f77fa00183a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2951.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 19, + 62 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2952.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2952.json" new file mode 100644 index 0000000000000000000000000000000000000000..a8b7fae0b67c3cf855662a5cfc443386ab622adc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2952.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 76, + 45 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2953.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2953.json" new file mode 100644 index 0000000000000000000000000000000000000000..547f2c55ccdb887e91cab22e7ad7a7b9b5a5c3ec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2953.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 76, + 54 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2954.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2954.json" new file mode 100644 index 0000000000000000000000000000000000000000..e4872c14a0158d72a924252fdc82903b1e8a8dc5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2954.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 68, + 18 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2955.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2955.json" new file mode 100644 index 0000000000000000000000000000000000000000..8d77030ad478db0c8fdc4c0fb96abae776e10e85 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2955.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 9, + 19 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2956.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2956.json" new file mode 100644 index 0000000000000000000000000000000000000000..467950197ddbf14b813314d3bfaa8d55ce630813 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2956.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 98, + 54 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2957.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2957.json" new file mode 100644 index 0000000000000000000000000000000000000000..ef791040a12eaa46c4cc6dd6a99d2644aa922713 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2957.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 26, + 70 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2958.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2958.json" new file mode 100644 index 0000000000000000000000000000000000000000..e8ebd6e7645cfd37937f6cb13879fb4a7552db2f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2958.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 79, + 49 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2959.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2959.json" new file mode 100644 index 0000000000000000000000000000000000000000..e38c8590703e83b9ead9f8f3fa2c101498e57d2c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2959.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 77, + 7 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2960.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2960.json" new file mode 100644 index 0000000000000000000000000000000000000000..8e666c0123f1c6689c5ca32c9016c61041c1dd93 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2960.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 56, + 29 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2961.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2961.json" new file mode 100644 index 0000000000000000000000000000000000000000..fda2640d63a8aa5ace36ddafdc7a24c4ddc62dd9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2961.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 9, + 85 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2962.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2962.json" new file mode 100644 index 0000000000000000000000000000000000000000..5d07130d7f4844908c71116c315fe818861af67b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2962.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 11, + 52 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2963.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2963.json" new file mode 100644 index 0000000000000000000000000000000000000000..cdb2443cd4f4a0f6297ccfe753971e5c263b340f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2963.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 47, + 89 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2964.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2964.json" new file mode 100644 index 0000000000000000000000000000000000000000..4e0fe5f98d4bc8899a124d2c9d77425307194046 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2964.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 7, + 68 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2965.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2965.json" new file mode 100644 index 0000000000000000000000000000000000000000..f76e50f85287fbff508eeba8a4d6afbc7911eca6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2965.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 72, + 0 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2966.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2966.json" new file mode 100644 index 0000000000000000000000000000000000000000..5469058a088036c73ef7c76e3173dec406ad78b8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2966.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 76, + 75 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2967.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2967.json" new file mode 100644 index 0000000000000000000000000000000000000000..debeb3f32c1a96f3bd4a2756078c07f47b30006d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2967.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 84, + 28 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2968.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2968.json" new file mode 100644 index 0000000000000000000000000000000000000000..485a99d9adce2e9b4e85fd2b8738ab2837437067 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2968.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 39, + 50 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2969.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2969.json" new file mode 100644 index 0000000000000000000000000000000000000000..3fc502180f0a6d0ae11a061edec6235543dc1cb6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2969.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 72, + 85 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2970.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2970.json" new file mode 100644 index 0000000000000000000000000000000000000000..35d7804f338c8827433f15667377860e0a53ae48 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2970.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 55, + 54 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2971.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2971.json" new file mode 100644 index 0000000000000000000000000000000000000000..69d3e5b10bb1025cef30e4f7440a06855789580b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2971.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 18, + 60 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2972.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2972.json" new file mode 100644 index 0000000000000000000000000000000000000000..715ee19a0012000e209d953a4d352c446fd27eeb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2972.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 0, + 34 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2973.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2973.json" new file mode 100644 index 0000000000000000000000000000000000000000..43a8494acbc4ef8190b8f663da75fc7bdb3b52c0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2973.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 37, + 23 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2974.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2974.json" new file mode 100644 index 0000000000000000000000000000000000000000..4850b9566a1afa85fa0453946438838dd61f73f5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2974.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 86, + 2 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2975.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2975.json" new file mode 100644 index 0000000000000000000000000000000000000000..4ade2c034e93befdb4363d4258ac76315e8df8c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2975.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 21, + 96 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2976.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2976.json" new file mode 100644 index 0000000000000000000000000000000000000000..03f2693465c1e341f28f479e0cc50ec06cd26031 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2976.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 42, + 41 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2977.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2977.json" new file mode 100644 index 0000000000000000000000000000000000000000..37044ac629f50acb35678bcb0e5d6a52201c504e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2977.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 91, + 82 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2978.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2978.json" new file mode 100644 index 0000000000000000000000000000000000000000..e99ce993cc20409407dca8e947282730ae3501fc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2978.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 16, + 30 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2979.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2979.json" new file mode 100644 index 0000000000000000000000000000000000000000..1ab9636eb6253138a46816232050c1f5ef7e2fb7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2979.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 15, + 67 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2980.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2980.json" new file mode 100644 index 0000000000000000000000000000000000000000..8738f8183ddf8f7b73875a61fd828205b1627de9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2980.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 60, + 36 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2981.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2981.json" new file mode 100644 index 0000000000000000000000000000000000000000..33a95d6b8cce866c3534a300a88f0df4a6e93679 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2981.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 66, + 66 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2982.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2982.json" new file mode 100644 index 0000000000000000000000000000000000000000..df841526f6a500c557a1285fdbee1aadc9f3df4a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2982.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 43, + 49 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2983.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2983.json" new file mode 100644 index 0000000000000000000000000000000000000000..cffe8f773d8144164fb9870de9eab2798d124794 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2983.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 76, + 98 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2984.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2984.json" new file mode 100644 index 0000000000000000000000000000000000000000..e68a547983ab30841c3cfe71495f312066887dda --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2984.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 30, + 20 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2985.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2985.json" new file mode 100644 index 0000000000000000000000000000000000000000..62b28cde24d5f631d46f7fc80b75934009e070d6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2985.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 2, + 22 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2986.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2986.json" new file mode 100644 index 0000000000000000000000000000000000000000..df06d10a2e78d6b775dc195744b1a22538070e6b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2986.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 85, + 74 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2987.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2987.json" new file mode 100644 index 0000000000000000000000000000000000000000..1e27735f50e670a0ae7648d0f49803ea27495d4f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2987.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 14, + 37 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2988.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2988.json" new file mode 100644 index 0000000000000000000000000000000000000000..2186adb67268261353513bfee218471701d17842 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2988.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 85, + 42 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2989.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2989.json" new file mode 100644 index 0000000000000000000000000000000000000000..c179dabe1c34f51051ae1e7360a05e1b43876ab7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2989.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 91, + 41 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2990.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2990.json" new file mode 100644 index 0000000000000000000000000000000000000000..ab3c38d19033b3e3088ce2e9d4d74b0fb584d8c0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2990.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 53, + 84 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2991.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2991.json" new file mode 100644 index 0000000000000000000000000000000000000000..8eada4488ebb01233e5ad90eb6a9409a1c21ca00 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2991.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 85, + 85 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2992.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2992.json" new file mode 100644 index 0000000000000000000000000000000000000000..3e336a8cd85a9c47e381ea22230f04d3d12a7396 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2992.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 56, + 31 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2993.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2993.json" new file mode 100644 index 0000000000000000000000000000000000000000..78894ffd32b1d05aa60535a1bf8fb79211bbd2ab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2993.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 70, + 47 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2994.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2994.json" new file mode 100644 index 0000000000000000000000000000000000000000..54e376b2585c816d62a25d2da7ce34a8ddc486ca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2994.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 65, + 81 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2995.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2995.json" new file mode 100644 index 0000000000000000000000000000000000000000..ca38975672124661f8104f640e5f6001ada44ec9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2995.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 43, + 73 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2996.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2996.json" new file mode 100644 index 0000000000000000000000000000000000000000..87f202a79c4384c828884556042b8b1feb325183 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2996.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 89, + 42 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2997.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2997.json" new file mode 100644 index 0000000000000000000000000000000000000000..e844d26087a0b12e9521c98f4ff6b4afbeb2da09 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2997.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 87, + 41 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2998.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2998.json" new file mode 100644 index 0000000000000000000000000000000000000000..fb7dbf551aa63f540aa9dba775b344d8294c1a6b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2998.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 47, + 38 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2999.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2999.json" new file mode 100644 index 0000000000000000000000000000000000000000..6a67ef98263088331f549e9fde663ca4d6a3af3b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_2999.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 35, + 76 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3000.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3000.json" new file mode 100644 index 0000000000000000000000000000000000000000..272775dbc3080d2d8793bc7759212f1e5e143e53 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3000.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 76, + 68 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3001.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3001.json" new file mode 100644 index 0000000000000000000000000000000000000000..cc7c551216c552a64ea17fdb0e16ecb15bf47591 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3001.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 97, + 44 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3002.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3002.json" new file mode 100644 index 0000000000000000000000000000000000000000..bed669c256dab5a9076004def606ee5a8d196cc1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3002.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 34, + 74 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3003.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3003.json" new file mode 100644 index 0000000000000000000000000000000000000000..3eb2f7835ae3c8a52e106da5faaa48a26355fd3e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3003.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 57, + 99 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3004.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3004.json" new file mode 100644 index 0000000000000000000000000000000000000000..bcb0fcf02d0a9e13773096e79da7e2146b508b86 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3004.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 9, + 80 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3005.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3005.json" new file mode 100644 index 0000000000000000000000000000000000000000..7f50272cef6f7fd8be99df0b149141f30233126b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3005.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 51, + 32 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3006.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3006.json" new file mode 100644 index 0000000000000000000000000000000000000000..49f05a3e4a089862f6f1681f6b3e53f1d90aaed6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3006.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 72, + 39 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3007.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3007.json" new file mode 100644 index 0000000000000000000000000000000000000000..c2dc9e1146aadba3b3c21ef1da5cf93acedeca3f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3007.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 69, + 70 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3008.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3008.json" new file mode 100644 index 0000000000000000000000000000000000000000..9c9c6bbdbca7b80571267497b02fca6fb5dbe6c9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3008.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 45, + 88 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3009.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3009.json" new file mode 100644 index 0000000000000000000000000000000000000000..d81d727e063bbd2100031f14e73be5d9077ec61c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3009.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 95, + 26 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3010.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3010.json" new file mode 100644 index 0000000000000000000000000000000000000000..3049938f383a7ee9e09d2147d6aaa5f8a6cab7d5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3010.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 59, + 10 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3011.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3011.json" new file mode 100644 index 0000000000000000000000000000000000000000..16a64b2753ad7febc13cd8c29fb5a94a73dca3a3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3011.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 45, + 69 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3012.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3012.json" new file mode 100644 index 0000000000000000000000000000000000000000..d7cf5d95e15e31d130f3722761fd2f08bd173380 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3012.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 12, + 59 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3013.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3013.json" new file mode 100644 index 0000000000000000000000000000000000000000..c40bae486a8fea57ee6abc52bc574122e3d93418 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3013.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 45, + 51 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3014.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3014.json" new file mode 100644 index 0000000000000000000000000000000000000000..54d651c7bc32d56fd84f506b5b30bd2279b51479 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3014.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 45, + 43 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3015.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3015.json" new file mode 100644 index 0000000000000000000000000000000000000000..542a429c39fb0f72dad1d3f3d2495a214d30e509 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3015.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 50, + 86 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3016.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3016.json" new file mode 100644 index 0000000000000000000000000000000000000000..8e3bae60237953f2b91e76c648db0021a3f3d503 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3016.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 14, + 18 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3017.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3017.json" new file mode 100644 index 0000000000000000000000000000000000000000..9a5cdd935e9b14c35a0904c07765e44d8e1f668e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3017.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 20, + 50 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3018.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3018.json" new file mode 100644 index 0000000000000000000000000000000000000000..481fd7c160782e882886a41bb7e95a9f2857c7cd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3018.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 69, + 3 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3019.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3019.json" new file mode 100644 index 0000000000000000000000000000000000000000..6d74af0bb024ee99471f6a8f93288c9484a02902 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3019.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 63, + 94 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3020.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3020.json" new file mode 100644 index 0000000000000000000000000000000000000000..d92d44e506ea89b6dd0a3d3d8f964696314db2db --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3020.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 13, + 68 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3021.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3021.json" new file mode 100644 index 0000000000000000000000000000000000000000..a21e17eceb7748b4e71a82f3d3417daaa07ee771 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3021.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 92, + 37 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3022.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3022.json" new file mode 100644 index 0000000000000000000000000000000000000000..529fd2f7ceefad7f8b2e837e953ff6d4e61c6758 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3022.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 33, + 0 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3023.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3023.json" new file mode 100644 index 0000000000000000000000000000000000000000..7d580fd9193ba4f8c7d97465bca98fe1f31eb946 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3023.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 79, + 90 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3024.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3024.json" new file mode 100644 index 0000000000000000000000000000000000000000..a33ef02964a543e60feb4116fed6e366bd841cc1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3024.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 53, + 3 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3025.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3025.json" new file mode 100644 index 0000000000000000000000000000000000000000..52177c485bed195cf2cc293ebca3226aef56cc2a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3025.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 23, + 5 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3026.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3026.json" new file mode 100644 index 0000000000000000000000000000000000000000..bd816d32f350cfba694355060dd86dae56da74e9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3026.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 31, + 46 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3027.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3027.json" new file mode 100644 index 0000000000000000000000000000000000000000..4d7f4ac3fddb156cbd070211064fbf88e11c6897 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3027.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 64, + 45 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3028.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3028.json" new file mode 100644 index 0000000000000000000000000000000000000000..4f973b08d97edb5c954eee6930867584a9a01747 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3028.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 68, + 12 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3029.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3029.json" new file mode 100644 index 0000000000000000000000000000000000000000..d46b5cf98e8b0a9a7d4e538458968e671dbb88d4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3029.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 79, + 19 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3030.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3030.json" new file mode 100644 index 0000000000000000000000000000000000000000..9a52984f6d5c881ac4deb3986daf2e5d2d116d6b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3030.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 39, + 54 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3031.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3031.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac32c0916977a2ff32ef122b8df7250a82cd9920 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3031.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 70, + 5 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3032.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3032.json" new file mode 100644 index 0000000000000000000000000000000000000000..ebd020b73b3fba9eb390caeb9962f51983e9a7d4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3032.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 86, + 80 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3033.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3033.json" new file mode 100644 index 0000000000000000000000000000000000000000..e50096f5dae21c14737be5cbd7b66252822b4d22 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3033.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 32, + 14 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3034.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3034.json" new file mode 100644 index 0000000000000000000000000000000000000000..727ea180fe4d212f5ea40d1e0b68f780a7d24b17 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3034.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 80, + 22 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3035.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3035.json" new file mode 100644 index 0000000000000000000000000000000000000000..3b9a7859ccb7a9281020b712d124522567cb0ad3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3035.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 85, + 28 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3036.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3036.json" new file mode 100644 index 0000000000000000000000000000000000000000..d081cee77c8b48c6770fd0c414f1e1860950fffe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3036.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 85, + 49 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3037.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3037.json" new file mode 100644 index 0000000000000000000000000000000000000000..7457a7abac2c14ca33e1d95f3589b019c7b7786b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3037.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 61, + 17 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3038.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3038.json" new file mode 100644 index 0000000000000000000000000000000000000000..6ff96868f8ada8f3689a946da2c05484ba640a50 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3038.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 89, + 8 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3039.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3039.json" new file mode 100644 index 0000000000000000000000000000000000000000..52be430fd111c1e193323d2c6f14c2a6920dd49b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3039.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 94, + 6 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3040.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3040.json" new file mode 100644 index 0000000000000000000000000000000000000000..a40baaa0483d72c72a7ab785016e8ffb7c42c1c3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3040.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 96, + 11 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3041.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3041.json" new file mode 100644 index 0000000000000000000000000000000000000000..62574233292036b0ee8d03126c0bb5f49e8d81c3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3041.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 71, + 94 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3042.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3042.json" new file mode 100644 index 0000000000000000000000000000000000000000..ecf27a51c9127f3cbd7d131a6a160d090a03f626 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3042.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 31, + 64 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3043.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3043.json" new file mode 100644 index 0000000000000000000000000000000000000000..42e09e5a4f39972fa9727a3c4639a0b39a0a35c0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3043.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 42, + 31 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3044.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3044.json" new file mode 100644 index 0000000000000000000000000000000000000000..7b0293925f876a92e13879ab0d10af4959a415e3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3044.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 59, + 91 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3045.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3045.json" new file mode 100644 index 0000000000000000000000000000000000000000..8ea7d5edf99f6e8779ac29ec71f949c795984fc8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3045.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 54, + 6 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3046.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3046.json" new file mode 100644 index 0000000000000000000000000000000000000000..19a0989347e59470194ae38226e09a000e7e647a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3046.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 98, + 53 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3047.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3047.json" new file mode 100644 index 0000000000000000000000000000000000000000..20bd03923eef58b6df619e076f284d7cf975bdf9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3047.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 5, + 79 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3048.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3048.json" new file mode 100644 index 0000000000000000000000000000000000000000..e48031de85dfd453231f43ffce496ff0309b9833 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3048.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 90, + 26 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3049.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3049.json" new file mode 100644 index 0000000000000000000000000000000000000000..9ea7e42dc8cc7be82f0f108f4d47efe87dd05b2a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3049.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 94, + 16 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3050.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3050.json" new file mode 100644 index 0000000000000000000000000000000000000000..49151c4140d4922730fa0ef9d20d3cebea07feac --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3050.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 15, + 73 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3051.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3051.json" new file mode 100644 index 0000000000000000000000000000000000000000..3947f44ac6d6154c7a3fc82dbf09ec522ff1f3d0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3051.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 52, + 0 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3052.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3052.json" new file mode 100644 index 0000000000000000000000000000000000000000..9f5f07fcc0d4ccccddadc1e218f9fa50a99f31d2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3052.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 23, + 81 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3053.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3053.json" new file mode 100644 index 0000000000000000000000000000000000000000..d3976d97f196878f0ef75a07961a484f0e76e1f6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3053.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 48, + 55 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3054.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3054.json" new file mode 100644 index 0000000000000000000000000000000000000000..05f7db5a1a8043221a2527f2f7d28d7ca1d54411 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3054.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 48, + 40 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3055.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3055.json" new file mode 100644 index 0000000000000000000000000000000000000000..2bcf93e3412433c5421b513aaab6818e53a764d5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3055.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 37, + 45 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3056.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3056.json" new file mode 100644 index 0000000000000000000000000000000000000000..eac0cfe0481ff079c4e3ddb64a607079a03be3e0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3056.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 67, + 96 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3057.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3057.json" new file mode 100644 index 0000000000000000000000000000000000000000..e6eebee61caa3038c31314a0230d984d5695e6b3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3057.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 15, + 92 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3058.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3058.json" new file mode 100644 index 0000000000000000000000000000000000000000..43bdc05dc7698be9da797b019c77d0378b87c619 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3058.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 81, + 11 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3059.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3059.json" new file mode 100644 index 0000000000000000000000000000000000000000..38256e0c63fa79b13bb77dc7da07d212132946b7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3059.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 87, + 81 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3060.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3060.json" new file mode 100644 index 0000000000000000000000000000000000000000..ce9b962cdf5860f056289a0ae714726821a65320 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3060.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 85, + 17 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3061.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3061.json" new file mode 100644 index 0000000000000000000000000000000000000000..dfa62fffcabf6e2195d03d770ba93a74b06f6199 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3061.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 42, + 78 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3062.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3062.json" new file mode 100644 index 0000000000000000000000000000000000000000..a51bb5f023b34c38bd9cdb2ca15396b08e51f876 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3062.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 1, + 26 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3063.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3063.json" new file mode 100644 index 0000000000000000000000000000000000000000..64344900d8b1a80f065eefecf181fc967277d5e0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3063.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 63, + 88 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3064.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3064.json" new file mode 100644 index 0000000000000000000000000000000000000000..7da3143283e19084a8d74766bd7d2a195c06dfae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3064.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 23, + 34 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3065.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3065.json" new file mode 100644 index 0000000000000000000000000000000000000000..51bd2c264e9e31bf6b27a14b828d8f456627c889 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3065.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 12, + 11 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3066.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3066.json" new file mode 100644 index 0000000000000000000000000000000000000000..c72fa21b5ef95a4f503a67544dbf55011300f977 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3066.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 6, + 95 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3067.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3067.json" new file mode 100644 index 0000000000000000000000000000000000000000..51cecefa5e70f0d93060df14fa2322a61cb08c92 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3067.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 26, + 19 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3068.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3068.json" new file mode 100644 index 0000000000000000000000000000000000000000..27efca92713b6c9145d564c13bb0be1917577f45 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3068.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 28, + 73 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3069.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3069.json" new file mode 100644 index 0000000000000000000000000000000000000000..7e9ec1c7c7efd74d6b074d6bf8c9466c960c2593 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3069.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 58, + 3 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3070.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3070.json" new file mode 100644 index 0000000000000000000000000000000000000000..850c7b8bcd3ea67de26c0afa4ecba88e0f41afbf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3070.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 86, + 98 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3071.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3071.json" new file mode 100644 index 0000000000000000000000000000000000000000..c9f79a84d54f8449fa7d466e8ec5335c08ea395a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3071.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 37, + 86 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3072.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3072.json" new file mode 100644 index 0000000000000000000000000000000000000000..516e94f2acc94642a35d306bc729c9a3e65e3f2d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3072.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 1, + 77 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3073.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3073.json" new file mode 100644 index 0000000000000000000000000000000000000000..2e8348b1f61fcb6278339ba0064b3f7555c785b8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3073.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 30, + 66 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3074.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3074.json" new file mode 100644 index 0000000000000000000000000000000000000000..25da790ddc2e8bc2831766cd45aec539aafd3667 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3074.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 52, + 39 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3075.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3075.json" new file mode 100644 index 0000000000000000000000000000000000000000..9dd3748f748a883728c6104a3a298e414c8eb11c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3075.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 28, + 74 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3076.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3076.json" new file mode 100644 index 0000000000000000000000000000000000000000..79f4e72241a7a0d2e5c82b223e65c3dc963fb59c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3076.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 82, + 95 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3077.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3077.json" new file mode 100644 index 0000000000000000000000000000000000000000..b8afc824a2875be331cd6f99802faffcc9156529 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3077.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 4, + 59 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3078.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3078.json" new file mode 100644 index 0000000000000000000000000000000000000000..dcc3c1ceed3105b078ac3456a3d768ded1bbd00b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3078.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 97, + 41 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3079.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3079.json" new file mode 100644 index 0000000000000000000000000000000000000000..1d5c9596214696f839d83e427d531b24a6ca116e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3079.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 11, + 12 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3080.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3080.json" new file mode 100644 index 0000000000000000000000000000000000000000..ea45b4f918831cc7a998565d4f1b3352c5f1a388 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3080.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.8", + "shadow": "3.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 87, + 86 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3081.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3081.json" new file mode 100644 index 0000000000000000000000000000000000000000..8cc076957d059ba197b72c67c22af56337608515 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3081.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 14, + 4 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3082.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3082.json" new file mode 100644 index 0000000000000000000000000000000000000000..a77af18cc2142327271600cebbdefb818348cc54 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3082.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 28, + 2 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3083.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3083.json" new file mode 100644 index 0000000000000000000000000000000000000000..2423df1c5c34ab3a0eb0efd9b62e3833b4505aa3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3083.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 83, + 33 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3084.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3084.json" new file mode 100644 index 0000000000000000000000000000000000000000..6f0af25a2b33125a53fc9953c21266e43cc713d3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3084.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 6, + 40 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3085.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3085.json" new file mode 100644 index 0000000000000000000000000000000000000000..540be261ab8120b73f2f15bcc2600be787020187 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3085.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 28, + 81 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3086.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3086.json" new file mode 100644 index 0000000000000000000000000000000000000000..1a5038cd5aa4a2e5ea91f2a02418b2ad5c9ff7bf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3086.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 98, + 51 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3087.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3087.json" new file mode 100644 index 0000000000000000000000000000000000000000..09b538d7f749005489cb10ea9bf134bf2479d902 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3087.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 96, + 74 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3088.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3088.json" new file mode 100644 index 0000000000000000000000000000000000000000..33ef74a7f29b7ef48411b06f81a28f4cffbcdfc8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3088.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 47, + 61 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3089.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3089.json" new file mode 100644 index 0000000000000000000000000000000000000000..92ca04dc261572a46cee10491c6227082fa0f0f9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3089.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 19, + 48 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3090.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3090.json" new file mode 100644 index 0000000000000000000000000000000000000000..39299db5ddb0a6a3ffd70828ec67c2c19e14df9c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3090.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 74, + 15 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3091.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3091.json" new file mode 100644 index 0000000000000000000000000000000000000000..c68c6b72a836f4691fc1400730cd5b365ec7c80c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3091.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 50, + 5 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3092.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3092.json" new file mode 100644 index 0000000000000000000000000000000000000000..a0ccc4c6897ee1047f8b85fa8cd332d561f369fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3092.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 20, + 81 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3093.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3093.json" new file mode 100644 index 0000000000000000000000000000000000000000..0019aa06db9af84e29794792c7b0ba6fe95526da --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3093.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 18, + 98 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3094.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3094.json" new file mode 100644 index 0000000000000000000000000000000000000000..8da62bbb0764ee8f0d5411b1937383c4904a0641 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3094.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 40, + 13 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3095.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3095.json" new file mode 100644 index 0000000000000000000000000000000000000000..abdd57d5879ee5c1bc80b8e16febb98759e7de45 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3095.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 82, + 68 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3096.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3096.json" new file mode 100644 index 0000000000000000000000000000000000000000..c5ab6a1a0f3f2f7908d8a7fb773552d34d3d62ce --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3096.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 95, + 16 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3097.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3097.json" new file mode 100644 index 0000000000000000000000000000000000000000..7ae930323c0df05343574fa7e17ba4170ddb161e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3097.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 44, + 35 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3098.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3098.json" new file mode 100644 index 0000000000000000000000000000000000000000..724e34beb98c0f2a5de99092dfa941953fabeec2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3098.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 6, + 87 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3099.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3099.json" new file mode 100644 index 0000000000000000000000000000000000000000..a124f0eb9511fa935ccf85ae2d8c43658ff83d87 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3099.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 25, + 44 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3100.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3100.json" new file mode 100644 index 0000000000000000000000000000000000000000..ba356ab7ce013b9cb88f9b961e08c4baae92e29d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3100.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 18, + 9 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3101.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3101.json" new file mode 100644 index 0000000000000000000000000000000000000000..0ab89618da67ca1bd867e31f36a2899297892fae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3101.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 82, + 13 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3102.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3102.json" new file mode 100644 index 0000000000000000000000000000000000000000..6ae2bc89ffac67e56f8b2cf97bd4924d779c10d2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3102.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 8, + 95 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3103.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3103.json" new file mode 100644 index 0000000000000000000000000000000000000000..e1765f8ad130ca5db2f379fed4c3dbd80b364a84 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3103.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 25, + 43 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3104.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3104.json" new file mode 100644 index 0000000000000000000000000000000000000000..22f8801754971c493d9d9fe11c3166d3ec161741 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3104.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 83, + 83 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3105.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3105.json" new file mode 100644 index 0000000000000000000000000000000000000000..d24bdc7ba795fc187a195fd3afa5ac60f6b7b07b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3105.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.7", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 26, + 45 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3106.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3106.json" new file mode 100644 index 0000000000000000000000000000000000000000..074a037aadac228eb23140a17fe434f1ae94df70 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3106.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 25, + 32 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3107.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3107.json" new file mode 100644 index 0000000000000000000000000000000000000000..6f42484eff01089a355521ce836e296bf10728dd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3107.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 53, + 23 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3108.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3108.json" new file mode 100644 index 0000000000000000000000000000000000000000..c24a5d5a2e07fb232d97b7dc7058ac349865c114 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3108.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 92, + 65 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3109.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3109.json" new file mode 100644 index 0000000000000000000000000000000000000000..d076073e86a35f08f68044171477eef228e4e0aa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3109.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 86, + 60 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3110.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3110.json" new file mode 100644 index 0000000000000000000000000000000000000000..c01855b220fdb1ea5897531209cdf5b5bd574b8e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3110.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 71, + 74 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3111.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3111.json" new file mode 100644 index 0000000000000000000000000000000000000000..0c999ff1da894b25e282242a1ba15293fc682981 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3111.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 81, + 13 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3112.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3112.json" new file mode 100644 index 0000000000000000000000000000000000000000..200f54a9f646d9cb45cde095912a413b9a99d66f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3112.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 50, + 97 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3113.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3113.json" new file mode 100644 index 0000000000000000000000000000000000000000..9224cb2b6ac36f68bcb77022cda461b5c8c0fe2c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3113.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 53, + 37 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3114.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3114.json" new file mode 100644 index 0000000000000000000000000000000000000000..764e17d59d71fc5b0ff9857586731bb6d43f931b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3114.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 46, + 84 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3115.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3115.json" new file mode 100644 index 0000000000000000000000000000000000000000..d64d8c6bbcb084210e696a052ad6af34b132efc5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3115.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 92, + 84 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3116.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3116.json" new file mode 100644 index 0000000000000000000000000000000000000000..ae07141d408db09ebf623a7c880cb647c1166fe4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3116.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 29, + 39 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3117.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3117.json" new file mode 100644 index 0000000000000000000000000000000000000000..18850fcba96eb2163253f5ba2c9598a23e934572 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3117.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 81, + 3 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3118.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3118.json" new file mode 100644 index 0000000000000000000000000000000000000000..b5f778a720792376e99a7bcbeb2c449587ac0ea4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3118.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 33, + 84 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3119.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3119.json" new file mode 100644 index 0000000000000000000000000000000000000000..9419584250508610f8949ddaf09656263baf8655 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3119.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 0, + 49 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3120.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3120.json" new file mode 100644 index 0000000000000000000000000000000000000000..7bbe1dde53073fa912144365d49555aa6a5c1e41 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3120.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 18, + 5 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3121.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3121.json" new file mode 100644 index 0000000000000000000000000000000000000000..824e57d6925b3c08a08abee3185d517b6205fa5e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3121.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 9, + 83 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3122.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3122.json" new file mode 100644 index 0000000000000000000000000000000000000000..61bca68ef9182e3794fcc9ccbd73019412a97237 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3122.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 45, + 49 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3123.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3123.json" new file mode 100644 index 0000000000000000000000000000000000000000..1490b82f2c1d92da51872ef24432869f44234c6c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3123.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 32, + 5 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3124.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3124.json" new file mode 100644 index 0000000000000000000000000000000000000000..570cb8af3aa02987762c2b8bbc1e6d511847545b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3124.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 29, + 57 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3125.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3125.json" new file mode 100644 index 0000000000000000000000000000000000000000..a67185838c07d03e366e68e9440b490b46b2b95f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3125.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 75, + 92 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3126.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3126.json" new file mode 100644 index 0000000000000000000000000000000000000000..4089a0ac9d94805d8339e7d28d231037db2b832a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3126.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 73, + 69 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3127.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3127.json" new file mode 100644 index 0000000000000000000000000000000000000000..b9c13262a0df3cb89e96b38c44c4c2050f96116e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3127.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 60, + 51 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3128.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3128.json" new file mode 100644 index 0000000000000000000000000000000000000000..000c07be9e28a786bcbac5e3a626e2233425f638 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3128.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 32, + 12 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3129.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3129.json" new file mode 100644 index 0000000000000000000000000000000000000000..748a0e74d2efc56a0ee10007b86aae539b2e11e0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3129.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 87, + 38 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3130.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3130.json" new file mode 100644 index 0000000000000000000000000000000000000000..d7f6aa4a203e89447a92898ba321cbe35e2be2b4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3130.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 76, + 31 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3131.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3131.json" new file mode 100644 index 0000000000000000000000000000000000000000..03922718d7f11528e8b5d79a29da5e37f8a01815 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3131.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 73, + 100 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3132.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3132.json" new file mode 100644 index 0000000000000000000000000000000000000000..10084d067a2e872761435721721c5933bf78ad47 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3132.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.3", + "shadow": "3.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 48, + 5 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3133.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3133.json" new file mode 100644 index 0000000000000000000000000000000000000000..86dcc7134fb1b6f2e1bb2a6a068fae2a43103805 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3133.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 51, + 36 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3134.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3134.json" new file mode 100644 index 0000000000000000000000000000000000000000..3f1380f1aaec371835973da0ff63b422173fa372 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3134.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 19, + 4 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3135.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3135.json" new file mode 100644 index 0000000000000000000000000000000000000000..bd4678d800c7f40c73ccf0e0f85d376d6d9f4fb2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3135.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 43, + 82 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3136.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3136.json" new file mode 100644 index 0000000000000000000000000000000000000000..3ba01c403386346bb9c8c558d51030890e00ef73 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3136.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 18, + 57 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3137.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3137.json" new file mode 100644 index 0000000000000000000000000000000000000000..b36aed1ab15c18f90b6d62447fa9c56a99ca5db7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3137.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 13, + 84 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3138.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3138.json" new file mode 100644 index 0000000000000000000000000000000000000000..7197b1df23bb811743010eef3dc9538e92e7dfe8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3138.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 41, + 40 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3139.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3139.json" new file mode 100644 index 0000000000000000000000000000000000000000..7ee92402dff74d261c83e4e9f3383e9da3753943 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3139.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 59, + 16 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3140.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3140.json" new file mode 100644 index 0000000000000000000000000000000000000000..a08ff2096de739124be499eb8fdfa84a973b4440 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3140.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 46, + 75 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3141.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3141.json" new file mode 100644 index 0000000000000000000000000000000000000000..a9206b4905362f6fa91207bccd1a1ee99ad39640 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3141.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 81, + 33 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3142.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3142.json" new file mode 100644 index 0000000000000000000000000000000000000000..64504dc077b8ac20d5827f5f70915e2eda5dce6a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3142.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 50, + 43 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3143.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3143.json" new file mode 100644 index 0000000000000000000000000000000000000000..d75cac89ce14e6080bf12cde38ea61328e58eb64 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3143.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 86, + 35 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3144.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3144.json" new file mode 100644 index 0000000000000000000000000000000000000000..b6dc694b4a47bcf46ec75bc755d28e12f5a4c400 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3144.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 72, + 60 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3145.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3145.json" new file mode 100644 index 0000000000000000000000000000000000000000..dff0d0df771d16147f2729e4900adc32ff19c8dc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3145.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 33, + 1 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3146.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3146.json" new file mode 100644 index 0000000000000000000000000000000000000000..7e6079da414720bb5ad67d30404ae29024cd3768 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3146.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 68, + 96 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3147.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3147.json" new file mode 100644 index 0000000000000000000000000000000000000000..1575457396fb02b14c14f98dfc78ebf667c3ed19 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3147.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 0, + 36 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3148.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3148.json" new file mode 100644 index 0000000000000000000000000000000000000000..26268da87db7388dbbdfe408ac648bd0acf82771 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3148.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 18, + 62 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3149.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3149.json" new file mode 100644 index 0000000000000000000000000000000000000000..dff62b7b2db83c7a3a6dbdd5d9237df1a5c1a173 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3149.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 99, + 35 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3150.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3150.json" new file mode 100644 index 0000000000000000000000000000000000000000..1e6a46dcb3f00b05bcd8bd8c408c2c5c2cac97c4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3150.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 8, + 48 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3151.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3151.json" new file mode 100644 index 0000000000000000000000000000000000000000..0e929291d50c3adfae0e18ceee9e825c28442071 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3151.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 55, + 76 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3152.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3152.json" new file mode 100644 index 0000000000000000000000000000000000000000..3b8309c691152bc4bfe1bbde176e6a9c7c5c2b48 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3152.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 87, + 50 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3153.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3153.json" new file mode 100644 index 0000000000000000000000000000000000000000..209698a642519447d83691db473c9d28e32f2ef7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3153.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 99, + 39 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3154.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3154.json" new file mode 100644 index 0000000000000000000000000000000000000000..4f4a95de1586765219224fdc5063dcfda3e2167d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3154.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 37, + 96 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3155.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3155.json" new file mode 100644 index 0000000000000000000000000000000000000000..eb50bd1e9a1d9a272beb71abc22fe8ddf60afa35 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3155.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 47, + 79 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3156.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3156.json" new file mode 100644 index 0000000000000000000000000000000000000000..f1c5aafe82ddecaeff500cb88e57a4dcb5bebf18 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3156.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 66, + 100 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3157.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3157.json" new file mode 100644 index 0000000000000000000000000000000000000000..38ff91052a5f5fb2f07b564633593e417918df6f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3157.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 51, + 15 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3158.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3158.json" new file mode 100644 index 0000000000000000000000000000000000000000..1805a0c2ad376a43687d595ebed3031ee59dc6fa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3158.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "3.0", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 8, + 86 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3159.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3159.json" new file mode 100644 index 0000000000000000000000000000000000000000..6f061e478d283701aaf438c87d60589fa874cce4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3159.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 5, + 41 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3160.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3160.json" new file mode 100644 index 0000000000000000000000000000000000000000..78b4c14360fe72f3af54fae6f0b7ba21f30a3b56 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3160.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 31, + 1 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3161.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3161.json" new file mode 100644 index 0000000000000000000000000000000000000000..1ddd6a9850f8fb6b9c34500ebc04419e3e038bd0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3161.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 92, + 28 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3162.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3162.json" new file mode 100644 index 0000000000000000000000000000000000000000..070937e114504f6133a6eab0fe61e570e298cc55 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3162.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 90, + 46 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3163.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3163.json" new file mode 100644 index 0000000000000000000000000000000000000000..8b0754633f0ffc4a7636fb63d8bc4e83a1dafe82 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3163.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 32, + 45 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3164.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3164.json" new file mode 100644 index 0000000000000000000000000000000000000000..025f757bee32672fc844e77d333d11d5360f5b09 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3164.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 85, + 31 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3165.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3165.json" new file mode 100644 index 0000000000000000000000000000000000000000..e3607b916d798b7446016d1363b6702f79bf3316 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3165.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 89, + 74 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3166.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3166.json" new file mode 100644 index 0000000000000000000000000000000000000000..fea7791efac6cd30b032c86b7997bff821e28224 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3166.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 21, + 87 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3167.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3167.json" new file mode 100644 index 0000000000000000000000000000000000000000..1ffb057b71db4b07a5e464844a9d54c35d0842ae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3167.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 61, + 90 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3168.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3168.json" new file mode 100644 index 0000000000000000000000000000000000000000..9bdc70f19255726a5654dd0b4cd37143195ad9f3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3168.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 6, + 59 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3169.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3169.json" new file mode 100644 index 0000000000000000000000000000000000000000..029338e90d0d14134d35151271dbc684f36886e3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3169.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 24, + 38 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3170.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3170.json" new file mode 100644 index 0000000000000000000000000000000000000000..c1923bef9e73c5ddfb9521501f90bfb96dcee2e9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3170.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 87, + 60 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3171.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3171.json" new file mode 100644 index 0000000000000000000000000000000000000000..572f2682c94c6a54bfd8f3acd7afef73f7cf08f5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3171.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 18, + 35 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3172.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3172.json" new file mode 100644 index 0000000000000000000000000000000000000000..eb5aae335c767241cece01e3fab3580d8285c4c3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3172.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "3.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 0, + 88 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3173.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3173.json" new file mode 100644 index 0000000000000000000000000000000000000000..04b610fe621c981c0874b651347c5b73c7b96eb6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3173.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 44, + 88 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3174.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3174.json" new file mode 100644 index 0000000000000000000000000000000000000000..820a5a1049c3931d033b54058062b5f7ee85e4c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3174.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 82, + 59 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3175.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3175.json" new file mode 100644 index 0000000000000000000000000000000000000000..db7e98550d441704848c122b3178cdeb957b25ae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3175.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 69, + 67 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3176.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3176.json" new file mode 100644 index 0000000000000000000000000000000000000000..ec0d0e5e23ec9859e531ead3d8f5dcbeab3e7999 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3176.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 93, + 72 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3177.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3177.json" new file mode 100644 index 0000000000000000000000000000000000000000..6fb10e6865dbae0c903f464e39fa771772a81b3f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3177.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 33, + 52 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3178.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3178.json" new file mode 100644 index 0000000000000000000000000000000000000000..c726e03e1840f593f9025dfb71eb184b1202fa4e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3178.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 68, + 98 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3179.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3179.json" new file mode 100644 index 0000000000000000000000000000000000000000..ea8f0e8d5f039d766caae09a8eca16aa3cf31bd7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3179.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 58, + 73 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3180.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3180.json" new file mode 100644 index 0000000000000000000000000000000000000000..cfe2b1529a4fa741de0b2444cf3b33b8f64300e7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3180.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 10, + 100 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3181.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3181.json" new file mode 100644 index 0000000000000000000000000000000000000000..72facc3ec0b5f4590e8a1ff7aa06ff3e344fda17 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3181.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 81, + 99 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3182.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3182.json" new file mode 100644 index 0000000000000000000000000000000000000000..348d41615b2f8a063c265f1d9737888249b4a70c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3182.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 7, + 5 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3183.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3183.json" new file mode 100644 index 0000000000000000000000000000000000000000..23ca08e8c49854e32038d16adcc6a3819ba12c69 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3183.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 6, + 20 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3184.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3184.json" new file mode 100644 index 0000000000000000000000000000000000000000..23f9dc7cd93d3d6dc8f2ff202cb81d4eb5d5e2c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3184.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 84, + 19 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3185.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3185.json" new file mode 100644 index 0000000000000000000000000000000000000000..90fa56334d626f2d290619dfa4ebcd551cb45f1a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3185.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 7, + 46 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3186.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3186.json" new file mode 100644 index 0000000000000000000000000000000000000000..bc1714441f3936d2d77859111be5b7d682666d48 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3186.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 8, + 70 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3187.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3187.json" new file mode 100644 index 0000000000000000000000000000000000000000..f47c4b8c6186a76bb6b6812f58da8f3e9e6dbde1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3187.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 76, + 92 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3188.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3188.json" new file mode 100644 index 0000000000000000000000000000000000000000..2f9aab82ecffed0312fd497b72f9899ed1e498c3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3188.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 80, + 60 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3189.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3189.json" new file mode 100644 index 0000000000000000000000000000000000000000..e8f2c6733713f77a431ef99f78121e01816efcce --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3189.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 17, + 44 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3190.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3190.json" new file mode 100644 index 0000000000000000000000000000000000000000..dcddfa2b41510fb367ae0f6d58d1505d2c581fe9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3190.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 45, + 97 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3191.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3191.json" new file mode 100644 index 0000000000000000000000000000000000000000..0c78f1497a44b9dfd29b8ae7d205bd13cd566e54 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3191.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.0", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 86, + 66 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3192.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3192.json" new file mode 100644 index 0000000000000000000000000000000000000000..b7ef8baabe9b2d6439589509ad7f7d358fd93fe5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3192.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 61, + 44 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3193.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3193.json" new file mode 100644 index 0000000000000000000000000000000000000000..c8968edd2ca8c05092229eca6cb15c4f45ae8600 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3193.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 66, + 63 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3194.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3194.json" new file mode 100644 index 0000000000000000000000000000000000000000..f1bc2d27898adfb0800c9336bd99240e6e9812f8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3194.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 98, + 5 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3195.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3195.json" new file mode 100644 index 0000000000000000000000000000000000000000..2d8cff186826c91982b572b62cf84185d756a9b4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3195.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 39, + 28 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3196.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3196.json" new file mode 100644 index 0000000000000000000000000000000000000000..bc010a80ca8dd0b11dc04d0dc8824989993f008d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3196.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 88, + 81 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3197.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3197.json" new file mode 100644 index 0000000000000000000000000000000000000000..213e5fdee8860943222d40620107f230fd44c8ff --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3197.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 84, + 38 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3198.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3198.json" new file mode 100644 index 0000000000000000000000000000000000000000..99705d5011b24b1afcc96c68f0bca3a18e34062d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3198.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 95, + 76 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3199.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3199.json" new file mode 100644 index 0000000000000000000000000000000000000000..21784bc504b9d8efcb16fa8875930385ec6eeb7c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3199.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 0, + 10 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3200.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3200.json" new file mode 100644 index 0000000000000000000000000000000000000000..e51d9d1625735523241225cc55c60f774b922f41 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3200.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 69, + 48 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3201.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3201.json" new file mode 100644 index 0000000000000000000000000000000000000000..a1ef453414535b05fb2919fdfb36958455e0bf08 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3201.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 95, + 33 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3202.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3202.json" new file mode 100644 index 0000000000000000000000000000000000000000..42b93d4c15dd69d34cfa8ca0a3ab261ac0f75807 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3202.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 99, + 28 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3203.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3203.json" new file mode 100644 index 0000000000000000000000000000000000000000..9fb2dfe65ff96dc114d1becb900e191f289a52a7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3203.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 57, + 58 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3204.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3204.json" new file mode 100644 index 0000000000000000000000000000000000000000..d0f2ae2d48b3414abd5229eb0f182a96f56cbc10 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3204.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 22, + 82 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3205.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3205.json" new file mode 100644 index 0000000000000000000000000000000000000000..31525f5a2e0c9b61217dd7b0d93134b43e07c364 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3205.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 70, + 6 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3206.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3206.json" new file mode 100644 index 0000000000000000000000000000000000000000..b6614fd5fb01a7fd33930c8d39214a630140e2b4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3206.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 43, + 30 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3207.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3207.json" new file mode 100644 index 0000000000000000000000000000000000000000..53803c7b3be4a29b38f1690da674fd3d7c1ad7da --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3207.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 1, + 97 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3208.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3208.json" new file mode 100644 index 0000000000000000000000000000000000000000..13b7f547339d2d2ee7e3312dc1f6229751bcb4b7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3208.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 12, + 47 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3209.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3209.json" new file mode 100644 index 0000000000000000000000000000000000000000..e799f29f555e9604fbbcbdae5e6bae837259c3c4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3209.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 9, + 92 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3210.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3210.json" new file mode 100644 index 0000000000000000000000000000000000000000..e2cee03b67ecdd3075afd9f1e7689688aaf6d521 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3210.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 24, + 8 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3211.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3211.json" new file mode 100644 index 0000000000000000000000000000000000000000..86b34be96ce7010eee1958d053d5ef74a3a15f6a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3211.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 87, + 26 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3212.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3212.json" new file mode 100644 index 0000000000000000000000000000000000000000..4b70865c6ec8cba7fb0c3e62ffc28eea1f58d3f6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3212.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 93, + 61 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3213.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3213.json" new file mode 100644 index 0000000000000000000000000000000000000000..5592ae9219258e8e44a843c9d1a5bf9ee34e3b73 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3213.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 96, + 90 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3214.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3214.json" new file mode 100644 index 0000000000000000000000000000000000000000..865e4a7b59f70e802a0c920d067d593db09bce1d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3214.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 86, + 84 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3215.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3215.json" new file mode 100644 index 0000000000000000000000000000000000000000..0582440d8a38bdca643a13f0729fae24a0387c7a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3215.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 44, + 4 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3216.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3216.json" new file mode 100644 index 0000000000000000000000000000000000000000..78e0f37d6d127254cd1672cb42b73195c4a2bbae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3216.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 90, + 62 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3217.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3217.json" new file mode 100644 index 0000000000000000000000000000000000000000..493b9d4f7736a7fa363fa57d51cacf70630e9f85 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3217.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 51, + 12 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3218.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3218.json" new file mode 100644 index 0000000000000000000000000000000000000000..c609f6bc23876919f0efd309ede3d424eb219015 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3218.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 93, + 99 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3219.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3219.json" new file mode 100644 index 0000000000000000000000000000000000000000..601710377dbb5e9c75af6e32bd6376273aa879eb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3219.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 68, + 32 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3220.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3220.json" new file mode 100644 index 0000000000000000000000000000000000000000..45cb51a55f945701d2060494bde2270f56f8ddf5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3220.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 68, + 50 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3221.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3221.json" new file mode 100644 index 0000000000000000000000000000000000000000..5f3cdf8f444b2e17546c6d127d45584bd01f4b54 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3221.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 43, + 97 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3222.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3222.json" new file mode 100644 index 0000000000000000000000000000000000000000..a1c5398a5a4e4bde9deb81e564d310d310d1ef55 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3222.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 30, + 43 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3223.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3223.json" new file mode 100644 index 0000000000000000000000000000000000000000..070f3e033393506aa1a48a820607f7925cc92af0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3223.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 6, + 88 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3224.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3224.json" new file mode 100644 index 0000000000000000000000000000000000000000..70e0e4b43880c169b0efd70b7864e301114dfa48 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3224.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 47, + 72 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3225.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3225.json" new file mode 100644 index 0000000000000000000000000000000000000000..1d26151323758bd0b4ce93477abad7eb0752784a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3225.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 16, + 54 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3226.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3226.json" new file mode 100644 index 0000000000000000000000000000000000000000..6d68438cee2aef22b348741a55a0c8e27440ea6e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3226.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 85, + 84 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3227.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3227.json" new file mode 100644 index 0000000000000000000000000000000000000000..925cc5718275dd33c3b6b689a8b82ab52f7ebcf8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3227.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 20, + 56 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3228.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3228.json" new file mode 100644 index 0000000000000000000000000000000000000000..505a29ab4e6227312d0a109ed457d1026c249dfb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3228.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 36, + 11 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3229.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3229.json" new file mode 100644 index 0000000000000000000000000000000000000000..d656d38713018a9ff952ae3e916d800f9e7a3046 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3229.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 57, + 3 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3230.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3230.json" new file mode 100644 index 0000000000000000000000000000000000000000..6bdeb5f1369fbb62539fbd9337c0dfa3c4ad318d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3230.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 14, + 99 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3231.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3231.json" new file mode 100644 index 0000000000000000000000000000000000000000..db642f2870c7f2a2a19aa9eeebc9bc58ccbaac05 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3231.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.7", + "shadow": "3.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 98, + 20 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3232.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3232.json" new file mode 100644 index 0000000000000000000000000000000000000000..3070753d8ee5e97d4d3f6f74bcfb40459beb74e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3232.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 56, + 57 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3233.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3233.json" new file mode 100644 index 0000000000000000000000000000000000000000..1cb815e9562491abef5079e32244dcb38d6712df --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3233.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 59, + 67 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3234.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3234.json" new file mode 100644 index 0000000000000000000000000000000000000000..febaa297a5ce72ccec5e4d5e20ec3a00a3f859d0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3234.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 70, + 55 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3235.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3235.json" new file mode 100644 index 0000000000000000000000000000000000000000..aa069903fa62411d7c7a7c34d781dd0ef1c5fe92 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3235.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 33, + 33 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3236.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3236.json" new file mode 100644 index 0000000000000000000000000000000000000000..0b64fdc5ff57b0f9a41e6bfcecf3d5708a9e61a1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3236.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 5, + 26 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3237.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3237.json" new file mode 100644 index 0000000000000000000000000000000000000000..53b73e26683b72d6b5c07e4ff8b8f27248e55231 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3237.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 6, + 73 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3238.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3238.json" new file mode 100644 index 0000000000000000000000000000000000000000..c3c151057aeced3f57990a3f1ac2332fb4c7e739 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3238.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 47, + 21 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3239.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3239.json" new file mode 100644 index 0000000000000000000000000000000000000000..a35f0b5f34e0b53b636713d3370d459b460c323c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3239.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 67, + 59 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3240.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3240.json" new file mode 100644 index 0000000000000000000000000000000000000000..f96a4a32881c884b089893678763c2c7a39d5dde --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3240.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 71, + 79 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3241.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3241.json" new file mode 100644 index 0000000000000000000000000000000000000000..debbdea9c4c8604fb4a4995fdd368f72e917a696 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3241.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 34, + 62 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3242.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3242.json" new file mode 100644 index 0000000000000000000000000000000000000000..25569f568cc7d8e72cacc35a793cb733e2999468 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3242.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.0", + "shadow": "3.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 16, + 66 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3243.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3243.json" new file mode 100644 index 0000000000000000000000000000000000000000..b6f9c19e7deeee3fb12766e9903cb96854afa708 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3243.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 86, + 67 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3244.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3244.json" new file mode 100644 index 0000000000000000000000000000000000000000..bd68f1b5d3aad7b1b353e6c6af5dbff64ec21dca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3244.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 10, + 46 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3245.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3245.json" new file mode 100644 index 0000000000000000000000000000000000000000..81330fa7fbfbe96aba33ae21b4a14f7fd1798ed7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3245.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.2", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 79, + 52 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3246.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3246.json" new file mode 100644 index 0000000000000000000000000000000000000000..80d73ab1465c50b0f648c55b69e7ea04ed145d7d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3246.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 83, + 83 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3247.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3247.json" new file mode 100644 index 0000000000000000000000000000000000000000..5558fde7a3035cc4c12e64f6b0f1a4ab797454f5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3247.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 45, + 0 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3248.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3248.json" new file mode 100644 index 0000000000000000000000000000000000000000..cbd24d2809d48c4ade7786a15ffc24378117b7c9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3248.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 15, + 73 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3249.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3249.json" new file mode 100644 index 0000000000000000000000000000000000000000..1cd712ebc6d233b4e57689879ae647c286cbde30 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3249.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 70, + 88 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3250.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3250.json" new file mode 100644 index 0000000000000000000000000000000000000000..e09362b8066e6e11b79fb6f81a4ceabe80d1aeba --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3250.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 39, + 73 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3251.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3251.json" new file mode 100644 index 0000000000000000000000000000000000000000..70992c7c88fce2df266b8cf3e11afe5cb579be33 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3251.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 94, + 38 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3252.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3252.json" new file mode 100644 index 0000000000000000000000000000000000000000..0850e980972cb78e9b4e731f994edf5b520ecacb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3252.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 66, + 5 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3253.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3253.json" new file mode 100644 index 0000000000000000000000000000000000000000..36df9fe3afd1b3b2b1f240a352b338a261fd7fd6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3253.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 36, + 79 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3254.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3254.json" new file mode 100644 index 0000000000000000000000000000000000000000..e45787f34e45b3e780a14265def33f864bee3b10 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3254.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.0", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 87, + 10 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3255.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3255.json" new file mode 100644 index 0000000000000000000000000000000000000000..d5cea617fa5d35c2fd2f8b02dba8dfc990adc979 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3255.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 98, + 79 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3256.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3256.json" new file mode 100644 index 0000000000000000000000000000000000000000..a30406573113311b9f562eecbf5306d61c62cdad --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3256.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 55, + 3 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3257.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3257.json" new file mode 100644 index 0000000000000000000000000000000000000000..b8bac8b6738b072e5bd654a39468de870692ee5b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3257.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 72, + 90 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3258.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3258.json" new file mode 100644 index 0000000000000000000000000000000000000000..a027e73fa55bfb5e0ed83ba3b24a9fc1e73558e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3258.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 98, + 4 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3259.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3259.json" new file mode 100644 index 0000000000000000000000000000000000000000..30780071c5f74eae3e676e431c2d921ab7b1d1fb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3259.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 59, + 1 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3260.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3260.json" new file mode 100644 index 0000000000000000000000000000000000000000..3fb829308ece05c1ad824b940b7819f52fe944e6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3260.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 73, + 26 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3261.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3261.json" new file mode 100644 index 0000000000000000000000000000000000000000..6d8777f0993270ea451e0acb10edb2b51d9dedc7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3261.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 15, + 37 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3262.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3262.json" new file mode 100644 index 0000000000000000000000000000000000000000..d6768c1fcece97d681bfb9119a64e61f0bedccb3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3262.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 77, + 8 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3263.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3263.json" new file mode 100644 index 0000000000000000000000000000000000000000..09a89400eaca64cdaa5cc4d454f37ae0176cf84f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3263.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 2, + 27 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3264.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3264.json" new file mode 100644 index 0000000000000000000000000000000000000000..dfecb20fec75be123b71218375a8806275e7dc01 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3264.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 83, + 70 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3265.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3265.json" new file mode 100644 index 0000000000000000000000000000000000000000..e9e084f69ea07e034af7570a164b36f3134ea2a8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3265.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 7, + 42 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3266.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3266.json" new file mode 100644 index 0000000000000000000000000000000000000000..180f03bb86b5da0e761ee49979c624241c869931 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3266.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 41, + 62 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3267.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3267.json" new file mode 100644 index 0000000000000000000000000000000000000000..2ada7029a28303a3f190ab5dee20c57b961a3e6c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3267.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 98, + 29 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3268.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3268.json" new file mode 100644 index 0000000000000000000000000000000000000000..d3c3517569f14ddca667432650f8d1d66ec13375 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3268.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 21, + 29 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3269.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3269.json" new file mode 100644 index 0000000000000000000000000000000000000000..2b4f7f36932c12857677bfaf90b5b2a6e1cb3f25 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3269.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 1, + 53 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3270.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3270.json" new file mode 100644 index 0000000000000000000000000000000000000000..9d5f161941754691668d84e0a72cd073ed9d9c5c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3270.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 63, + 53 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3271.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3271.json" new file mode 100644 index 0000000000000000000000000000000000000000..3550535b0173ea06bb0a3d5487c578262010c6c8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3271.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 33, + 17 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3272.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3272.json" new file mode 100644 index 0000000000000000000000000000000000000000..d5b234f8f07ac56f407c8d01090d64c14d1d32fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3272.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 30, + 2 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3273.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3273.json" new file mode 100644 index 0000000000000000000000000000000000000000..1ab8fb9c14e1d650fa265210e72f4ccb53bd45ce --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3273.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 51, + 55 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3274.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3274.json" new file mode 100644 index 0000000000000000000000000000000000000000..7ea2d404841915928697e21708f982bb39f3fc65 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3274.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 15, + 24 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3275.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3275.json" new file mode 100644 index 0000000000000000000000000000000000000000..aa8b38054df1a0c722dc3407cb43185e2c99cc0f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3275.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 51, + 32 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3276.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3276.json" new file mode 100644 index 0000000000000000000000000000000000000000..73f54b152b01614a0589e94a92c96b8567c46eab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3276.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 57, + 74 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3277.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3277.json" new file mode 100644 index 0000000000000000000000000000000000000000..a7553f12a00cbb6c0276cc2e86c363d9ee10013c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3277.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 67, + 39 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3278.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3278.json" new file mode 100644 index 0000000000000000000000000000000000000000..6cf10b1b3d637757a97af04cdc3c7b867fd50253 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3278.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 44, + 69 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3279.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3279.json" new file mode 100644 index 0000000000000000000000000000000000000000..acd02de43bd152a29069a4ebb1b56afeac911e17 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3279.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 31, + 36 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3280.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3280.json" new file mode 100644 index 0000000000000000000000000000000000000000..52e8497e177485f297f956c6bb5948ffd68b7672 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3280.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 28, + 100 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3281.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3281.json" new file mode 100644 index 0000000000000000000000000000000000000000..21b38541021054ea63cdbc56de2627ff672695d9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3281.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 47, + 9 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3282.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3282.json" new file mode 100644 index 0000000000000000000000000000000000000000..2a984e29f0275a4d4384daae9a0fcd12144d4a50 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3282.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 44, + 39 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3283.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3283.json" new file mode 100644 index 0000000000000000000000000000000000000000..d733b4c6c8af2c9bb96e96868d16b2429b152764 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3283.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 74, + 81 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3284.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3284.json" new file mode 100644 index 0000000000000000000000000000000000000000..8dcdf0c8a15c07290d1024c37d3f122330b347a9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3284.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 97, + 69 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3285.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3285.json" new file mode 100644 index 0000000000000000000000000000000000000000..e213a78254bacabd841151498dde2bc00eeaed16 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3285.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 60, + 30 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3286.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3286.json" new file mode 100644 index 0000000000000000000000000000000000000000..b29feab12611c25b29531dc25d225208ce448b90 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3286.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 96, + 14 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3287.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3287.json" new file mode 100644 index 0000000000000000000000000000000000000000..8907b17f30fa2857f1e167520c3757e3782b2d4f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3287.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 30, + 59 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3288.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3288.json" new file mode 100644 index 0000000000000000000000000000000000000000..985b4ff6624de0f11e64d3ae319bc06e35d4c06a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3288.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 38, + 48 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3289.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3289.json" new file mode 100644 index 0000000000000000000000000000000000000000..7fe73096549aea48f3d73795ca8eb1108b238357 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3289.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 38, + 59 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3290.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3290.json" new file mode 100644 index 0000000000000000000000000000000000000000..b7632b223bca39b2ccbd7d9d5dfc3a03b86ec71c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3290.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 63, + 4 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3291.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3291.json" new file mode 100644 index 0000000000000000000000000000000000000000..53a397adff618e4f639686f1364d59965a161e40 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3291.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 83, + 13 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3292.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3292.json" new file mode 100644 index 0000000000000000000000000000000000000000..8e1c1a3940611d0fe21a9efc2cd150fe470a824d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3292.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 32, + 17 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3293.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3293.json" new file mode 100644 index 0000000000000000000000000000000000000000..1a17c5647da6135c86412787b19608788166f223 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3293.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 77, + 80 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3294.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3294.json" new file mode 100644 index 0000000000000000000000000000000000000000..dce77d7164ac12036fa62c07788aa78f8b03504f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3294.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 90, + 37 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3295.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3295.json" new file mode 100644 index 0000000000000000000000000000000000000000..7f7dcd598366222805d0288a1c5b83ea44c26394 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3295.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 0, + 50 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3296.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3296.json" new file mode 100644 index 0000000000000000000000000000000000000000..3b29f907a8259dbe80221d436035c3e9d876c889 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3296.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 92, + 59 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3297.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3297.json" new file mode 100644 index 0000000000000000000000000000000000000000..1060e460a2cb8bddb5409b6390b5695cf761f904 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3297.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 96, + 85 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3298.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3298.json" new file mode 100644 index 0000000000000000000000000000000000000000..0077dde89420c0a22c7c5ba2494a94e89dedc1c9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3298.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 12, + 95 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3299.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3299.json" new file mode 100644 index 0000000000000000000000000000000000000000..7883b5cf5e75552447c510d9d261308dee7c905e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3299.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 55, + 32 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3300.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3300.json" new file mode 100644 index 0000000000000000000000000000000000000000..b5317c89fd72a98f29a6c489345512ad2bda0ad4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3300.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "2.9", + "shadow": "3.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 27, + 28 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3301.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3301.json" new file mode 100644 index 0000000000000000000000000000000000000000..975b560535ee02d4e374e658c32fbb756ecd8563 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3301.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 37, + 14 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3302.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3302.json" new file mode 100644 index 0000000000000000000000000000000000000000..a9057af4b1e0c4fdb0d40033fae318f8d2692b49 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3302.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 43, + 68 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3303.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3303.json" new file mode 100644 index 0000000000000000000000000000000000000000..d02a2227647fdca3cfcc089e08ea2ef5486ef172 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3303.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 25, + 16 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3304.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3304.json" new file mode 100644 index 0000000000000000000000000000000000000000..4e8207a62c1ae497bb2dfb8d0c36c2d584b6aca0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3304.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 87, + 77 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3305.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3305.json" new file mode 100644 index 0000000000000000000000000000000000000000..c14286c1da5ecdffe7eaa516993bc4a9bd7103a0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3305.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 66, + 77 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3306.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3306.json" new file mode 100644 index 0000000000000000000000000000000000000000..9f52048f6fa85a56f060d54978e98c9d63179569 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3306.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 18, + 23 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3307.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3307.json" new file mode 100644 index 0000000000000000000000000000000000000000..0e3aa77f046d195e683c1841761f57af1fe68df1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3307.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 80, + 61 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3308.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3308.json" new file mode 100644 index 0000000000000000000000000000000000000000..79987e24a7736d5e6a883f85010da0e082c86013 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3308.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 56, + 83 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3309.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3309.json" new file mode 100644 index 0000000000000000000000000000000000000000..466463555d9e66b8548549ad90f41f4638f755d9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3309.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 0, + 68 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3310.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3310.json" new file mode 100644 index 0000000000000000000000000000000000000000..bdd193b7a59c088ac92e87c341927ef194f61c89 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3310.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 79, + 34 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3311.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3311.json" new file mode 100644 index 0000000000000000000000000000000000000000..e023dab3d7c06277086ec989436c41a8ad89415a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3311.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 6, + 76 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3312.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3312.json" new file mode 100644 index 0000000000000000000000000000000000000000..d238585139a243e69d3237ac183bbf75d809fd17 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3312.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 74, + 13 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3313.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3313.json" new file mode 100644 index 0000000000000000000000000000000000000000..ecd4277f3e4636ebb547bac0d8949fa6eb715e06 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3313.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 22, + 58 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3314.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3314.json" new file mode 100644 index 0000000000000000000000000000000000000000..9b8366b41b9008f6fa856397677bad65380346d9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3314.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 20, + 3 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3315.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3315.json" new file mode 100644 index 0000000000000000000000000000000000000000..a8b7fb8d7e6987605618475749f60d30b1e580d0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3315.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 5, + 54 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3316.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3316.json" new file mode 100644 index 0000000000000000000000000000000000000000..7341ca0843a856201eb0391b95ca0b6189eba709 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3316.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 12, + 37 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3317.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3317.json" new file mode 100644 index 0000000000000000000000000000000000000000..297fbd9b30e9d11d59fc618358d9e1bc854b7490 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3317.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 4, + 46 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3318.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3318.json" new file mode 100644 index 0000000000000000000000000000000000000000..6d6cef4e8de08e5a75223103da5c34541d79e1da --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3318.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 91, + 20 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3319.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3319.json" new file mode 100644 index 0000000000000000000000000000000000000000..12ff6031861de071202e80e05b0e425d0b6e540b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3319.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 85, + 11 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3320.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3320.json" new file mode 100644 index 0000000000000000000000000000000000000000..88a05a9c164dc844c5c7ad4363e7a91094d92b76 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3320.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 82, + 94 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3321.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3321.json" new file mode 100644 index 0000000000000000000000000000000000000000..b16edaf480ef7973e2a3d026a31e4f5792aeb9d1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3321.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 15, + 22 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3322.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3322.json" new file mode 100644 index 0000000000000000000000000000000000000000..e1055f158d2a66fa5a403edcfaaf4efe099cbcbf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3322.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 44, + 50 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3323.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3323.json" new file mode 100644 index 0000000000000000000000000000000000000000..ff0df42dbf9649a93f725b1cacb71f8a0dc197d2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3323.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 92, + 67 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3324.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3324.json" new file mode 100644 index 0000000000000000000000000000000000000000..7b9ff3544c7c497a40b5d8a11a964bfc729df74f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3324.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 70, + 89 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3325.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3325.json" new file mode 100644 index 0000000000000000000000000000000000000000..f9c4173c0b7a363170774c814777b8cac0791bd8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3325.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 33, + 76 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3326.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3326.json" new file mode 100644 index 0000000000000000000000000000000000000000..730c1597c6db0478aa41d4716add81e97f84ccec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3326.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 21, + 97 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3327.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3327.json" new file mode 100644 index 0000000000000000000000000000000000000000..7956eb06c505b5b57a6e3a2ca1187703c79ddf08 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3327.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 83, + 9 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3328.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3328.json" new file mode 100644 index 0000000000000000000000000000000000000000..691401ce7985a5ca932b254baf83361a6e84c0d7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3328.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 98, + 25 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3329.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3329.json" new file mode 100644 index 0000000000000000000000000000000000000000..310ec18152d985c8de2fa761d1b38a76899fdeb7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3329.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 46, + 16 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3330.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3330.json" new file mode 100644 index 0000000000000000000000000000000000000000..82041c28edf5b4c2f5c2ad636d722adbdeb4b0e5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3330.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 64, + 9 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3331.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3331.json" new file mode 100644 index 0000000000000000000000000000000000000000..eb13c886ec47c418336ca6a9960c46185e37ab65 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3331.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 21, + 88 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3332.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3332.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac1aeaf127b5fd79d68214b4499e7f974e6a15bf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3332.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 35, + 94 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3333.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3333.json" new file mode 100644 index 0000000000000000000000000000000000000000..29b91f71d39138e695417c194893a4047ed9082e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3333.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 80, + 42 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3334.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3334.json" new file mode 100644 index 0000000000000000000000000000000000000000..aa1773d72cd7476307a95190372b4b2a6d63face --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3334.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 86, + 49 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3335.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3335.json" new file mode 100644 index 0000000000000000000000000000000000000000..3cd371ba342a41b3a9eec25c718b9e5370083d16 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3335.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 77, + 62 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3336.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3336.json" new file mode 100644 index 0000000000000000000000000000000000000000..e33a10cc6393fe2435b2998c3fd38d660ccea6f5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3336.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 38, + 75 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3337.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3337.json" new file mode 100644 index 0000000000000000000000000000000000000000..49cd52c5c5e005df33e887966dc9789fde9c2fed --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3337.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 64, + 61 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3338.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3338.json" new file mode 100644 index 0000000000000000000000000000000000000000..d205c293aee283313299365857f87872e74df5fc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3338.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 32, + 73 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3339.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3339.json" new file mode 100644 index 0000000000000000000000000000000000000000..81fca9205229b42c0ef11e8a44a9a7d3ca245aae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3339.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 88, + 1 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3340.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3340.json" new file mode 100644 index 0000000000000000000000000000000000000000..cfcd874d96a4418d9699caf23bb4efb8bd6d858b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3340.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 11, + 74 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3341.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3341.json" new file mode 100644 index 0000000000000000000000000000000000000000..f6bcf96f57d83af14380d5093c0ac9493b3a63b9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3341.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 30, + 83 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3342.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3342.json" new file mode 100644 index 0000000000000000000000000000000000000000..900fb9ae17498694a3f939275ccb5a1ab99cf143 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3342.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 26, + 62 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3343.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3343.json" new file mode 100644 index 0000000000000000000000000000000000000000..e1fe00c6e2299260c7e592b543a48fe19a763b53 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3343.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 95, + 60 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3344.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3344.json" new file mode 100644 index 0000000000000000000000000000000000000000..222ae986ab55ceb720be6ce510f485cb07040e41 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3344.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 42, + 31 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3345.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3345.json" new file mode 100644 index 0000000000000000000000000000000000000000..2121259b6ea3da1b45f42971f0c1ff5e85045bd1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3345.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 15, + 56 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3346.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3346.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac45c08e31db4c28e089d4c9953c6355d4864f07 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3346.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 90, + 44 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3347.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3347.json" new file mode 100644 index 0000000000000000000000000000000000000000..6245fe36e09eb04a6732cf3be9824165eb3eebb3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3347.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 52, + 12 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3348.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3348.json" new file mode 100644 index 0000000000000000000000000000000000000000..82e642504271632f857669f9b2bb4fa543463ece --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3348.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 10, + 68 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3349.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3349.json" new file mode 100644 index 0000000000000000000000000000000000000000..2df5c51340ad66e50c71e9866e32e42a34b5a1e2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3349.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 90, + 27 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3350.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3350.json" new file mode 100644 index 0000000000000000000000000000000000000000..a7b886c1126c2b02afcbc334ad18a008e70498be --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3350.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 76, + 56 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3351.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3351.json" new file mode 100644 index 0000000000000000000000000000000000000000..02aa6a3405c58ba135572977f4a073176cecc718 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3351.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 71, + 25 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3352.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3352.json" new file mode 100644 index 0000000000000000000000000000000000000000..9259518ef1eec00469b7e6cc5c5139e943a6aec4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3352.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 53, + 7 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3353.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3353.json" new file mode 100644 index 0000000000000000000000000000000000000000..bbda68fc1b31f12d99f325c30d0b8cb0622f35c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3353.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 93, + 45 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3354.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3354.json" new file mode 100644 index 0000000000000000000000000000000000000000..a2c986d1fe6b6d9e6644f7d7c9cfc74d1f5eb806 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3354.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 48, + 1 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3355.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3355.json" new file mode 100644 index 0000000000000000000000000000000000000000..b51a23fc706b59c28a46f1a6c0e62ea47f38ec26 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3355.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 65, + 65 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3356.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3356.json" new file mode 100644 index 0000000000000000000000000000000000000000..720a2847fb5b7f07b6c536127aa5b40b356d4e7f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3356.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 51, + 94 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3357.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3357.json" new file mode 100644 index 0000000000000000000000000000000000000000..39c6dc4d7c5bb9d7dc8194047e4ac062785e4698 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3357.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 47, + 37 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3358.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3358.json" new file mode 100644 index 0000000000000000000000000000000000000000..4c9d3912689211f8ad8b8b51fc61b4f61f489b16 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3358.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 59, + 50 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3359.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3359.json" new file mode 100644 index 0000000000000000000000000000000000000000..f7b28274d22922794ea2cc3b4a3d6e22a70f0363 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3359.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 98, + 2 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3360.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3360.json" new file mode 100644 index 0000000000000000000000000000000000000000..4b5d98f1bcfe0281cb70f73a51b84d3d61a19838 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3360.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 18, + 22 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3361.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3361.json" new file mode 100644 index 0000000000000000000000000000000000000000..96c65662fe55ecf49bd6ac2c4b300b6577876c35 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3361.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 69, + 41 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3362.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3362.json" new file mode 100644 index 0000000000000000000000000000000000000000..d6e6cd38ae665bc080bef57ce534c4e1d018736a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3362.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 37, + 52 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3363.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3363.json" new file mode 100644 index 0000000000000000000000000000000000000000..e34aee53cc7f871f0df62eb99a7b29ab86f549f0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3363.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 50, + 42 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3364.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3364.json" new file mode 100644 index 0000000000000000000000000000000000000000..0e19f170a064b6f1046ca010da453dffc37b0aa3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3364.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 3, + 7 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3365.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3365.json" new file mode 100644 index 0000000000000000000000000000000000000000..2f1d80269a12bd1222fed3a07b0ec40fa78aa54f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3365.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 1, + 80 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3366.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3366.json" new file mode 100644 index 0000000000000000000000000000000000000000..a5e8d9b80fb91f3fd89548b8aa5fbea6f7883e83 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3366.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 93, + 89 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3367.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3367.json" new file mode 100644 index 0000000000000000000000000000000000000000..8860507b726c08eca8169f38f629a15aa55a6ac0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3367.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 0, + 63 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3368.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3368.json" new file mode 100644 index 0000000000000000000000000000000000000000..c2c864af8dfc99c29c62728b7ad62f5b1f85ca8d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3368.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 44, + 91 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3369.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3369.json" new file mode 100644 index 0000000000000000000000000000000000000000..27dbc1d5e794ee70aae06183e2ccfcb3738bc950 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3369.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 99, + 0 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3370.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3370.json" new file mode 100644 index 0000000000000000000000000000000000000000..96e41c1c7566a54cb5e9781973d037d35a4fa837 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3370.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 97, + 43 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3371.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3371.json" new file mode 100644 index 0000000000000000000000000000000000000000..f7ac120aefd7bac42aa0e29159003fc7bd540203 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3371.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.4", + "shadow": "3.0", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 12, + 27 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3372.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3372.json" new file mode 100644 index 0000000000000000000000000000000000000000..e47b2df471a8f6715e12fa9af824096c9505dbc5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3372.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 85, + 80 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3373.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3373.json" new file mode 100644 index 0000000000000000000000000000000000000000..44cc36d7e671e3ac5dc67a35527813f094ce1595 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3373.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 19, + 79 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3374.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3374.json" new file mode 100644 index 0000000000000000000000000000000000000000..d92e0ac0255bae433ec39b616405482aabf74d9c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3374.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 28, + 22 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3375.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3375.json" new file mode 100644 index 0000000000000000000000000000000000000000..7eddc79d87ca5caa2c56bd099d661b5f70ad80e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3375.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 21, + 0 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3376.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3376.json" new file mode 100644 index 0000000000000000000000000000000000000000..31c91bafb03ab2553090a278e6342c7f086956bb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3376.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 77, + 77 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3377.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3377.json" new file mode 100644 index 0000000000000000000000000000000000000000..5950b18346f630a473a74f0d128af05e9172856d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3377.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 85, + 99 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3378.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3378.json" new file mode 100644 index 0000000000000000000000000000000000000000..406337ee0a694a73183039c02b131fcd8b699184 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3378.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 26, + 69 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3379.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3379.json" new file mode 100644 index 0000000000000000000000000000000000000000..27c1a55226e87c1f4fa051f52f5ac4e4c9432939 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3379.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 16, + 43 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3380.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3380.json" new file mode 100644 index 0000000000000000000000000000000000000000..f6572502093c59f43ed4e566b9343ca7bfc94a9e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3380.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 66, + 75 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3381.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3381.json" new file mode 100644 index 0000000000000000000000000000000000000000..dae5262824e8a7785062e88b4b17ef9c3a0436fb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3381.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 78, + 29 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3382.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3382.json" new file mode 100644 index 0000000000000000000000000000000000000000..a80941eaba0dfe80280b0ea19540c41f7702c076 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3382.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 100, + 82 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3383.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3383.json" new file mode 100644 index 0000000000000000000000000000000000000000..a5d37188cc5b90e3aff1519586b8baabe73a1bec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3383.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 21, + 42 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3384.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3384.json" new file mode 100644 index 0000000000000000000000000000000000000000..1629f0a47e6eaae049c22f4b9516c483d37f44fc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3384.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "3.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 2, + 85 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3385.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3385.json" new file mode 100644 index 0000000000000000000000000000000000000000..baa9c14201f345d60d84d212296bae11d14bb0a0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3385.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 38, + 52 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3386.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3386.json" new file mode 100644 index 0000000000000000000000000000000000000000..eee6ee4c83f750a7d5ae08f8b999a3deaabdf84d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3386.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 68, + 61 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3387.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3387.json" new file mode 100644 index 0000000000000000000000000000000000000000..0daaee941ad5444d73e58efbf7479c0870bda2d2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3387.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 96, + 71 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3388.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3388.json" new file mode 100644 index 0000000000000000000000000000000000000000..0847200b2e21448dfb94c7800badc25f1ab560da --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3388.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 89, + 3 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3389.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3389.json" new file mode 100644 index 0000000000000000000000000000000000000000..13a7e2d1a6882397d1d9bd7fb36d7476d99b6774 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3389.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 12, + 38 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3390.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3390.json" new file mode 100644 index 0000000000000000000000000000000000000000..776a125efdcadb2622eae12b1ab6db9504ee83be --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3390.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 5, + 12 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3391.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3391.json" new file mode 100644 index 0000000000000000000000000000000000000000..328cfaa2945785a8c2a59e6abe56d0561716160f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3391.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 23, + 89 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3392.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3392.json" new file mode 100644 index 0000000000000000000000000000000000000000..69fb675880fda28fb78f1d8b2b1b2431ad30b2af --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3392.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 87, + 22 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3393.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3393.json" new file mode 100644 index 0000000000000000000000000000000000000000..9921b5966612166658faf1cbb0ff71e640840a21 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3393.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 24, + 28 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3394.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3394.json" new file mode 100644 index 0000000000000000000000000000000000000000..25e1337d7bd61c19b6aea192d5acac392f2d69b4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3394.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 97, + 20 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3395.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3395.json" new file mode 100644 index 0000000000000000000000000000000000000000..10b076a03e7dbb61822788fb1ec7280fb7c98168 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3395.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 92, + 95 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3396.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3396.json" new file mode 100644 index 0000000000000000000000000000000000000000..43d09a5d2bc191f4d4a8659bdf9e69f443837660 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3396.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 18, + 21 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3397.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3397.json" new file mode 100644 index 0000000000000000000000000000000000000000..a91fed8ff6cffde0cb6ed7e5adb95c060710fcb9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3397.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 37, + 51 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3398.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3398.json" new file mode 100644 index 0000000000000000000000000000000000000000..11195afaa7770751f261d1684df335654fe45cb8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3398.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 23, + 77 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3399.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3399.json" new file mode 100644 index 0000000000000000000000000000000000000000..8dbc147bc2bfa53c8c0a3a2178f6230580921fe8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3399.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 43, + 40 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3400.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3400.json" new file mode 100644 index 0000000000000000000000000000000000000000..3e4cf52248b55a9fd8c8e88c8930c7db8fff7cb5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3400.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 44, + 4 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3401.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3401.json" new file mode 100644 index 0000000000000000000000000000000000000000..4cb9b76518e87df472b1f0df3c2874308acb2366 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3401.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 0, + 14 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3402.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3402.json" new file mode 100644 index 0000000000000000000000000000000000000000..88b0c7b5480e4cabc26f461839b4cff2bd4ba675 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3402.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 36, + 25 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3403.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3403.json" new file mode 100644 index 0000000000000000000000000000000000000000..efcd0090cc52b3069dfb08292c73fbc87cc1bfb3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3403.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 29, + 42 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3404.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3404.json" new file mode 100644 index 0000000000000000000000000000000000000000..15a9217a245a2a41df6bf074f3dbc5c9d5110e03 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3404.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 2, + 81 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3405.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3405.json" new file mode 100644 index 0000000000000000000000000000000000000000..b36583413ac86d38dcb244014372ad3d080fd11f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3405.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 26, + 3 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3406.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3406.json" new file mode 100644 index 0000000000000000000000000000000000000000..1bf296a5f549199102b3addada5b195ff06b4222 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3406.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 15, + 29 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3407.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3407.json" new file mode 100644 index 0000000000000000000000000000000000000000..1371025647c0e768b7a5da138a5ad847f87a50e2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3407.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 51, + 77 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3408.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3408.json" new file mode 100644 index 0000000000000000000000000000000000000000..d3a41a2bed46f7305aecbf107442437397e523dc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3408.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 26, + 35 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3409.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3409.json" new file mode 100644 index 0000000000000000000000000000000000000000..1890e7d3ae6d0bc4a93081ef4615c4130b6193a7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3409.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 70, + 13 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3410.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3410.json" new file mode 100644 index 0000000000000000000000000000000000000000..6be6a62a323853c745b6c303a78ba15a2bbe7708 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3410.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 66, + 47 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3411.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3411.json" new file mode 100644 index 0000000000000000000000000000000000000000..8c612bdfa0d46d6dbbf9574593d1da548b63cde9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3411.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 81, + 42 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3412.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3412.json" new file mode 100644 index 0000000000000000000000000000000000000000..153119dbf1a5c76f8feb8b64369c759b6518c211 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3412.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 1, + 25 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3413.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3413.json" new file mode 100644 index 0000000000000000000000000000000000000000..39ca0da7393e596c00c6bc2d6713e3522141637e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3413.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 71, + 34 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3414.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3414.json" new file mode 100644 index 0000000000000000000000000000000000000000..a8aa677f3ac0b9f508635a33ba91210a96701ac4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3414.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 0, + 69 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3415.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3415.json" new file mode 100644 index 0000000000000000000000000000000000000000..d09f1bbaa52ddb8daa056d05cc6dfe4a8899e9a8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3415.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 89, + 47 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3416.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3416.json" new file mode 100644 index 0000000000000000000000000000000000000000..5154ee5e290942f4b64f1a96640ffa35c03fbb77 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3416.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 24, + 49 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3417.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3417.json" new file mode 100644 index 0000000000000000000000000000000000000000..00d723e0fb9bd9d4dc165a61c78e52959f45765d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3417.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 23, + 28 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3418.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3418.json" new file mode 100644 index 0000000000000000000000000000000000000000..e4f69e91e7ba4ce2a46e63983f9a33f8ec6271fa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3418.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 40, + 63 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3419.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3419.json" new file mode 100644 index 0000000000000000000000000000000000000000..1c8eb4be0778034bb32206ce45b771d3ad41aba0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3419.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 5, + 25 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3420.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3420.json" new file mode 100644 index 0000000000000000000000000000000000000000..5b10f2bb4e1195e3a05c1e88704065e1a2ee1c12 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3420.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 45, + 81 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3421.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3421.json" new file mode 100644 index 0000000000000000000000000000000000000000..6781519407a28d4c12d85f18c116e4dd8b05aa15 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3421.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 20, + 25 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3422.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3422.json" new file mode 100644 index 0000000000000000000000000000000000000000..99e883e92f14ab3c32c2b0f81936c19d138495a9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3422.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 97, + 3 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3423.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3423.json" new file mode 100644 index 0000000000000000000000000000000000000000..cccf2bf3c8a40779d34add604db3f88e29b4ee65 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3423.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 46, + 68 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3424.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3424.json" new file mode 100644 index 0000000000000000000000000000000000000000..2656cb6020df849025cfbcba67a1170736f50fa6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3424.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 30, + 3 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3425.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3425.json" new file mode 100644 index 0000000000000000000000000000000000000000..02f544b43915515b58d3655086b0799bd1a62206 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3425.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 41, + 26 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3426.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3426.json" new file mode 100644 index 0000000000000000000000000000000000000000..e550dbe2b57b9582282d4a06dfbcca6fd533a58e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3426.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 35, + 42 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3427.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3427.json" new file mode 100644 index 0000000000000000000000000000000000000000..bfd98dd0db814d9fb2047b3b6ef8a9a4b0727761 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3427.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 43, + 47 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3428.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3428.json" new file mode 100644 index 0000000000000000000000000000000000000000..08b60a56fbdeff73d28d31022cfa841e2cad96aa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3428.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 20, + 68 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3429.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3429.json" new file mode 100644 index 0000000000000000000000000000000000000000..9ef4a1f959b0132ce6d443dc1118ff4da23d3859 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3429.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 95, + 64 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3430.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3430.json" new file mode 100644 index 0000000000000000000000000000000000000000..cc5daf97e38d9e0400df3652fd0fa33abf61201d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3430.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 13, + 44 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3431.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3431.json" new file mode 100644 index 0000000000000000000000000000000000000000..67dbe49c0a08f99215d8bbfb2a0552e6242ff93b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3431.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.1", + "shadow": "3.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 27, + 12 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3432.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3432.json" new file mode 100644 index 0000000000000000000000000000000000000000..0b857ecc1816bcd4fe922e36f79774478f8c897b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3432.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 6, + 87 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3433.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3433.json" new file mode 100644 index 0000000000000000000000000000000000000000..cbfda839b7732b6e912c56d12520116d644d9616 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3433.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 43, + 99 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3434.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3434.json" new file mode 100644 index 0000000000000000000000000000000000000000..7cd25c0655f0a44bc3febb2dfc6a6cb4dd421ab6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3434.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 74, + 32 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3435.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3435.json" new file mode 100644 index 0000000000000000000000000000000000000000..bcc6ef1fd996139668705b0264e2b7a51f707cb0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3435.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 73, + 69 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3436.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3436.json" new file mode 100644 index 0000000000000000000000000000000000000000..bf4265486f0173358606f525e42738241c61158c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3436.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 28, + 22 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3437.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3437.json" new file mode 100644 index 0000000000000000000000000000000000000000..d167f354b192822cda297109f00f0988512417ca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3437.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 0, + 38 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3438.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3438.json" new file mode 100644 index 0000000000000000000000000000000000000000..f53839bc2cae38c7f08c05df0f2c57b097607089 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3438.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 48, + 9 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3439.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3439.json" new file mode 100644 index 0000000000000000000000000000000000000000..ec818ffa24d1065e36f33d3ca79f9187f4b69cf9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3439.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 22, + 46 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3440.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3440.json" new file mode 100644 index 0000000000000000000000000000000000000000..da4b15f31a08a7cd003eff5c0ee46cf194312c00 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3440.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 50, + 25 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3441.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3441.json" new file mode 100644 index 0000000000000000000000000000000000000000..78b0352e3fa95fd07b3e86f92727c423f00e2188 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3441.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 15, + 64 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3442.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3442.json" new file mode 100644 index 0000000000000000000000000000000000000000..c6808238947c436e89b9af0da0ef6072660a9b5f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3442.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.2", + "shadow": "3.0", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 19, + 51 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3443.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3443.json" new file mode 100644 index 0000000000000000000000000000000000000000..5b446767a7648dc4f9af11ec751f3b4f32dacf77 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3443.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 30, + 97 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3444.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3444.json" new file mode 100644 index 0000000000000000000000000000000000000000..6ebff94f6a153ba702fdf9a3a810c8e55379699d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3444.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 68, + 31 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3445.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3445.json" new file mode 100644 index 0000000000000000000000000000000000000000..bb9f1c573edda74a732ae289be0f9e3bb0df2deb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3445.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 48, + 94 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3446.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3446.json" new file mode 100644 index 0000000000000000000000000000000000000000..6163375f5b0f5bd53d50647bdbbbbdb705fc1278 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3446.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 45, + 23 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3447.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3447.json" new file mode 100644 index 0000000000000000000000000000000000000000..303ddb685908e862d819f1549b83234a9ab5093c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3447.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 58, + 92 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3448.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3448.json" new file mode 100644 index 0000000000000000000000000000000000000000..5ff1dda82776c7ea10060ee8b04111a3df2180df --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3448.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 51, + 87 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3449.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3449.json" new file mode 100644 index 0000000000000000000000000000000000000000..9e103ebb32a8aa3eaba99ca0429c3d401e4e1e9a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3449.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 89, + 3 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3450.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3450.json" new file mode 100644 index 0000000000000000000000000000000000000000..39a595ce6891a19cf097f50ce7f2e41bf0daba80 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3450.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 18, + 51 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3451.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3451.json" new file mode 100644 index 0000000000000000000000000000000000000000..2839d47a453efd3fc93574bae05b71c80fba27f5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3451.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 77, + 49 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3452.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3452.json" new file mode 100644 index 0000000000000000000000000000000000000000..a76947e8a037f9130555c854a61e9658783c06d4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3452.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 68, + 47 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3453.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3453.json" new file mode 100644 index 0000000000000000000000000000000000000000..7b3630a6a4a684c526f14c5c508228d0b0c5b0d0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3453.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 32, + 84 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3454.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3454.json" new file mode 100644 index 0000000000000000000000000000000000000000..79241c53045ace321f5f61966ae9406638361064 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3454.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 29, + 93 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3455.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3455.json" new file mode 100644 index 0000000000000000000000000000000000000000..d7d48c99cd5476bd93bec84d7c0003ffc2f2e751 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3455.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 3, + 34 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3456.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3456.json" new file mode 100644 index 0000000000000000000000000000000000000000..878a00dca38a0715fd244fd8dfeb023d8b4c4ca4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3456.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 66, + 19 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3457.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3457.json" new file mode 100644 index 0000000000000000000000000000000000000000..24ebbf65acf286d34fd2c438a9daba94d756f296 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3457.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 19, + 76 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3458.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3458.json" new file mode 100644 index 0000000000000000000000000000000000000000..379792b912e25098001445d46cfbbe8c0cad8264 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3458.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 29, + 7 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3459.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3459.json" new file mode 100644 index 0000000000000000000000000000000000000000..b9b693e64cc69e4183793b2a5e24f0dafbd7a1d3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3459.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 28, + 58 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3460.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3460.json" new file mode 100644 index 0000000000000000000000000000000000000000..1993ca8aeba45adc391ae83eee0b5f5aca67ff37 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3460.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 95, + 73 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3461.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3461.json" new file mode 100644 index 0000000000000000000000000000000000000000..25606bae3077752387015fc780f8afbb6ba663e6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3461.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 83, + 57 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3462.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3462.json" new file mode 100644 index 0000000000000000000000000000000000000000..2522f0912c52acd0faf3fe4d0ba5a170d0dca104 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3462.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 66, + 43 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3463.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3463.json" new file mode 100644 index 0000000000000000000000000000000000000000..a0f84defde0bfcbc3ccc7d9a0973c8ba13f80d57 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3463.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 24, + 95 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3464.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3464.json" new file mode 100644 index 0000000000000000000000000000000000000000..500aee71c888fc6dd6bd32346940677f04633b3e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3464.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 72, + 6 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3465.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3465.json" new file mode 100644 index 0000000000000000000000000000000000000000..6ffedf223238446b09bd55ee537c1ecc75d06dad --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3465.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 23, + 62 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3466.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3466.json" new file mode 100644 index 0000000000000000000000000000000000000000..3466a56d5c0b2ad5c306910f8dd5dad40cdf8cab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3466.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 15, + 85 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3467.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3467.json" new file mode 100644 index 0000000000000000000000000000000000000000..603a64a80cbea691d25ee30c53cf0f1e49e08283 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3467.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 15, + 25 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3468.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3468.json" new file mode 100644 index 0000000000000000000000000000000000000000..51ef371b641768f425263008f90145e3a7e70a27 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3468.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 81, + 21 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3469.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3469.json" new file mode 100644 index 0000000000000000000000000000000000000000..6621eb0b0ac79d3567d5f3fb2b3cc9fff4260ef3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3469.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 56, + 53 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3470.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3470.json" new file mode 100644 index 0000000000000000000000000000000000000000..f2f8e8d85a7d584ce791c08adc1ea4f03f6639bb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3470.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 60, + 64 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3471.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3471.json" new file mode 100644 index 0000000000000000000000000000000000000000..5f20d65261143558a84ca69daf59b259484c903b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3471.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 42, + 92 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3472.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3472.json" new file mode 100644 index 0000000000000000000000000000000000000000..bfd26990933d8c8cc05f70452e3455b1952219f4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3472.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 97, + 22 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3473.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3473.json" new file mode 100644 index 0000000000000000000000000000000000000000..73e78017d58e470d135bace58f6015d52cd08cfe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3473.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 76, + 99 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3474.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3474.json" new file mode 100644 index 0000000000000000000000000000000000000000..33d5c0773332e610b6975471717dbe690051ddff --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3474.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 98, + 43 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3475.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3475.json" new file mode 100644 index 0000000000000000000000000000000000000000..1f4656f43ae563c10104a6ea866f458450e93023 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3475.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 81, + 66 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3476.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3476.json" new file mode 100644 index 0000000000000000000000000000000000000000..da8b160704257520e46d782125ddd2489cf128b5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3476.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 45, + 67 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3477.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3477.json" new file mode 100644 index 0000000000000000000000000000000000000000..0523ee17c3a3237effa67b77c39cb11f1629467c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3477.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 37, + 23 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3478.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3478.json" new file mode 100644 index 0000000000000000000000000000000000000000..12f51d6045392abc9e6f59896617e59b59d86a08 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3478.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 95, + 40 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3479.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3479.json" new file mode 100644 index 0000000000000000000000000000000000000000..74217da243973f0ea5062f3478ae7c95ff69f56c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3479.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 66, + 52 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3480.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3480.json" new file mode 100644 index 0000000000000000000000000000000000000000..d2d88a579d83e21f94c579b514c2c1a96f892227 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3480.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 83, + 88 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3481.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3481.json" new file mode 100644 index 0000000000000000000000000000000000000000..0e60376443641aa8b0cdd4d473f9604571b04258 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3481.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 77, + 98 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3482.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3482.json" new file mode 100644 index 0000000000000000000000000000000000000000..a2c76cef19254f0ab4cc6a911706c3cece4ebc79 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3482.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 10, + 79 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3483.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3483.json" new file mode 100644 index 0000000000000000000000000000000000000000..6fef1703e253ea4e0dce5685ea846bca893e5625 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3483.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 24, + 55 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3484.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3484.json" new file mode 100644 index 0000000000000000000000000000000000000000..8238d85ee50dada7a4cf488dd16f874a46842b1f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3484.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 67, + 18 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3485.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3485.json" new file mode 100644 index 0000000000000000000000000000000000000000..45d9729fc95a747048546dde784ac67a5fb5c6e1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3485.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 15, + 82 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3486.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3486.json" new file mode 100644 index 0000000000000000000000000000000000000000..94b3e6bb083e41e5afa43de440add0843e57f083 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3486.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 31, + 99 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3487.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3487.json" new file mode 100644 index 0000000000000000000000000000000000000000..13cf418d32b0c809d3ee930384ead91cdb32d7b1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3487.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 2, + 16 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3488.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3488.json" new file mode 100644 index 0000000000000000000000000000000000000000..28ac5cff4cb1dd7ca5624c71055eb4d962ad5c6b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3488.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 15, + 7 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3489.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3489.json" new file mode 100644 index 0000000000000000000000000000000000000000..c49022244c53ed5d89ba5b024930cc314dc58008 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3489.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 19, + 26 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3490.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3490.json" new file mode 100644 index 0000000000000000000000000000000000000000..16e3a33c287469ce65ab45b7c10f5acafc33296c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3490.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 10, + 36 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3491.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3491.json" new file mode 100644 index 0000000000000000000000000000000000000000..953f29a027c85affda51336f952b89ce59f58cad --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3491.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 94, + 81 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3492.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3492.json" new file mode 100644 index 0000000000000000000000000000000000000000..d256885ca9211bfeffa05643ae00fc15d6c49bcd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3492.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 73, + 44 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3493.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3493.json" new file mode 100644 index 0000000000000000000000000000000000000000..31c0f493260b9bd1612692d5fa90b0fbbaf6918e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3493.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 43, + 51 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3494.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3494.json" new file mode 100644 index 0000000000000000000000000000000000000000..0491e5eaad8210e3a1c94cbefe4b8230c5013370 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3494.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 58, + 51 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3495.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3495.json" new file mode 100644 index 0000000000000000000000000000000000000000..840cd8388e51e78901d5e02aca90edcf2757ee1a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3495.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 38, + 38 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3496.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3496.json" new file mode 100644 index 0000000000000000000000000000000000000000..f07928a215b0e107beff2fb4edb8581b0395ac40 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3496.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 20, + 26 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3497.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3497.json" new file mode 100644 index 0000000000000000000000000000000000000000..837042afed6c7d2d6878f04a65e7ea87050d2fad --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3497.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 85, + 91 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3498.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3498.json" new file mode 100644 index 0000000000000000000000000000000000000000..203ccbd9a2a40319f56de6d5d89f979b9b8ffac3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3498.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 93, + 85 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3499.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3499.json" new file mode 100644 index 0000000000000000000000000000000000000000..cb6574668fae8f8ebe0de8aa2866b39fa635ba99 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3499.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 18, + 40 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3500.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3500.json" new file mode 100644 index 0000000000000000000000000000000000000000..083c94a7e0474cac26803d56b13ad53bd843e093 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3500.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 45, + 79 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3501.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3501.json" new file mode 100644 index 0000000000000000000000000000000000000000..8cf98e61625bffa38b72c306f6575b56ba9d1cba --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3501.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 36, + 60 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3502.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3502.json" new file mode 100644 index 0000000000000000000000000000000000000000..12305c9d9b89d033f21b00ac9a3e211659a824d9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3502.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 64, + 8 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3503.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3503.json" new file mode 100644 index 0000000000000000000000000000000000000000..9b93943207ed69aa622664c0eecdad7b98f2e2cd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3503.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 100, + 75 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3504.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3504.json" new file mode 100644 index 0000000000000000000000000000000000000000..77c2be0c6c8965ae29a2a2290c90f687273b875c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3504.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 1, + 14 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3505.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3505.json" new file mode 100644 index 0000000000000000000000000000000000000000..f478517757c028083c6b6e9ffb3b9cbedb37c105 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3505.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 36, + 3 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3506.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3506.json" new file mode 100644 index 0000000000000000000000000000000000000000..64677c03ac0edf23f5e89d0518f38328629f5e54 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3506.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 97, + 5 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3507.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3507.json" new file mode 100644 index 0000000000000000000000000000000000000000..9d76c0473000b40d6893ae92bec010275f64c485 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3507.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 86, + 42 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3508.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3508.json" new file mode 100644 index 0000000000000000000000000000000000000000..e9ca4dc05125e368d1ad76b6f379af2240f90b60 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3508.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 22, + 14 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3509.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3509.json" new file mode 100644 index 0000000000000000000000000000000000000000..457bdc9c3d20077f0cf05c968ab16c4901090c80 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3509.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 38, + 68 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3510.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3510.json" new file mode 100644 index 0000000000000000000000000000000000000000..454fe0bb9d749737669cc5de016fce98a20ab1c7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3510.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 27, + 65 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3511.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3511.json" new file mode 100644 index 0000000000000000000000000000000000000000..c1c1520cb226006bf93146b7189b6cfb8bcd2557 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3511.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 80, + 36 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3512.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3512.json" new file mode 100644 index 0000000000000000000000000000000000000000..119ffca03a2e93401a2e927f076b46722d25fa60 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3512.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 47, + 7 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3513.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3513.json" new file mode 100644 index 0000000000000000000000000000000000000000..3f85850b9a954f54674e4305a20645632b9da2b6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3513.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 79, + 4 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3514.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3514.json" new file mode 100644 index 0000000000000000000000000000000000000000..1fba220b324c1d86ba766a83c46a48ab7adf2ad0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3514.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 37, + 48 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3515.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3515.json" new file mode 100644 index 0000000000000000000000000000000000000000..62618803d127ddf47e7394812d34e3f4c7e17cc6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3515.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 61, + 99 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3516.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3516.json" new file mode 100644 index 0000000000000000000000000000000000000000..fe7261426a52f908c8d041af91d1ad503cfc0d4e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3516.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 15, + 77 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3517.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3517.json" new file mode 100644 index 0000000000000000000000000000000000000000..6a733d935bb1892118c231d2704da031a87c0c1b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3517.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 36, + 30 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3518.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3518.json" new file mode 100644 index 0000000000000000000000000000000000000000..714d6c1c852cafb5c7bdf2043dc798c51a028a4f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3518.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 30, + 61, + 40 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3519.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3519.json" new file mode 100644 index 0000000000000000000000000000000000000000..2f64db182b0e7122472264838a9a9dfd57602fcf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3519.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 22, + 76 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3520.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3520.json" new file mode 100644 index 0000000000000000000000000000000000000000..58138593f5c15f7983a3f533960dca394262769c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3520.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 74, + 69 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3521.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3521.json" new file mode 100644 index 0000000000000000000000000000000000000000..d2e7e0151853385f95b51b15f7fbea3b60df5548 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3521.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 93, + 56 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3522.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3522.json" new file mode 100644 index 0000000000000000000000000000000000000000..077901a41925d52e6629b949b0061800ebfbf267 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3522.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 6, + 37 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3523.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3523.json" new file mode 100644 index 0000000000000000000000000000000000000000..2f0769f60972563c824ec5a49d5d73339236f49b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3523.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 73, + 46 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3524.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3524.json" new file mode 100644 index 0000000000000000000000000000000000000000..ab7dbe5ef782d360eddfe54c4062fe7d3af3739b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3524.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 97, + 52 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3525.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3525.json" new file mode 100644 index 0000000000000000000000000000000000000000..762435f52e72046915a65d037f8f199db217675e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3525.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 39, + 70 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3526.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3526.json" new file mode 100644 index 0000000000000000000000000000000000000000..f6f85bd62903aa8527727b123ed82a5e0fac4bf6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3526.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 67, + 1 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3527.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3527.json" new file mode 100644 index 0000000000000000000000000000000000000000..615e2d04d11071e3e86dc045fac5765dc6156c69 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3527.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 45, + 73 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3528.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3528.json" new file mode 100644 index 0000000000000000000000000000000000000000..bc186669bd99860b34ba1b0a4ab0045c0f2141a2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3528.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 19, + 23 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3529.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3529.json" new file mode 100644 index 0000000000000000000000000000000000000000..2f9d86cc7f59710f464872e26294ac49a4570278 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3529.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 58, + 19 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3530.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3530.json" new file mode 100644 index 0000000000000000000000000000000000000000..623b85c156da10b8651c58b811abb223fbc867eb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3530.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 72, + 81 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3531.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3531.json" new file mode 100644 index 0000000000000000000000000000000000000000..818f07537228748b597ea98355caba7a2ce3b3ad --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3531.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 26, + 47 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3532.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3532.json" new file mode 100644 index 0000000000000000000000000000000000000000..1a6a1a3289a310654618bea345891f48421d2ea0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3532.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 49, + 74 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3533.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3533.json" new file mode 100644 index 0000000000000000000000000000000000000000..8c4fbcf85576547a40ed66963e3cffdee0467fe5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3533.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 23, + 25 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3534.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3534.json" new file mode 100644 index 0000000000000000000000000000000000000000..f62299fffa2e4a4a9ca765bafdb0b4707753db43 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3534.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.0", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 36, + 46 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3535.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3535.json" new file mode 100644 index 0000000000000000000000000000000000000000..fb48d73bf6a55a2ea176cae657bd9a6213dcf08d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3535.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 89, + 55 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3536.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3536.json" new file mode 100644 index 0000000000000000000000000000000000000000..ca43b08f37f6de9735e7dbdb380c9119b4d9d207 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3536.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 55, + 52 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3537.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3537.json" new file mode 100644 index 0000000000000000000000000000000000000000..2cb8cdd534a590e88bde4ff384948fbadd1ffc34 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3537.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 87, + 87 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3538.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3538.json" new file mode 100644 index 0000000000000000000000000000000000000000..d3e6eea6fd76f40bd4dbcfcdbcf411f169a2e0ed --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3538.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 95, + 66 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3539.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3539.json" new file mode 100644 index 0000000000000000000000000000000000000000..6f29ac208c0291079038f620d2e12b43ac083af0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3539.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 7, + 21 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3540.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3540.json" new file mode 100644 index 0000000000000000000000000000000000000000..df85971beca8a674ad52a4c18b9210760a8c1a5a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3540.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 85, + 90 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3541.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3541.json" new file mode 100644 index 0000000000000000000000000000000000000000..6cced24ae93cd44a7b2787182838baf2ccaf6d57 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3541.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 59, + 64 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3542.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3542.json" new file mode 100644 index 0000000000000000000000000000000000000000..10a5d9fa286addb597458ee7928ed048f38d3d6b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3542.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 50, + 3 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3543.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3543.json" new file mode 100644 index 0000000000000000000000000000000000000000..0d8b925d82d447fc9d4fc651c49f5ded29f77645 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3543.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 36, + 13 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3544.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3544.json" new file mode 100644 index 0000000000000000000000000000000000000000..7cde204ae157b9e1e2cc27c5f9962bdf14d5b4eb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3544.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 66, + 92 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3545.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3545.json" new file mode 100644 index 0000000000000000000000000000000000000000..d45045d604e676fd81acf4cbfc3ea354fc119c7e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3545.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 92, + 87 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3546.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3546.json" new file mode 100644 index 0000000000000000000000000000000000000000..fd8736f44af5bb87ac0ca9541c0c5b994f852bd3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3546.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 10, + 85 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3547.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3547.json" new file mode 100644 index 0000000000000000000000000000000000000000..8f2eed7becc8d52ec1ce48ada10216ec6792f260 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3547.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 69, + 26 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3548.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3548.json" new file mode 100644 index 0000000000000000000000000000000000000000..76db0c07f6f19ba4830f8162165e43ac72ceac8d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3548.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 85, + 20 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3549.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3549.json" new file mode 100644 index 0000000000000000000000000000000000000000..c726912961e78ecc2a8f9f010f40bd83f347c8cf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3549.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 89, + 32 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3550.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3550.json" new file mode 100644 index 0000000000000000000000000000000000000000..b7197b98f140ce5c369a20c46ba6176b652646fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3550.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 82, + 14 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3551.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3551.json" new file mode 100644 index 0000000000000000000000000000000000000000..f7094423dcf8441078e1e558f787057ce6b681c8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3551.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 32, + 44 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3552.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3552.json" new file mode 100644 index 0000000000000000000000000000000000000000..140ec0d646c8ffd07dee2bf15a87b104d9cdceb1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3552.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 8, + 55 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3553.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3553.json" new file mode 100644 index 0000000000000000000000000000000000000000..f2e1be9fc9a771972ad3d925d352f841de85d932 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3553.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 72, + 78 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3554.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3554.json" new file mode 100644 index 0000000000000000000000000000000000000000..4c9bfc192e61da32cd5218ad41b82231d549e361 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3554.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 41, + 24 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3555.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3555.json" new file mode 100644 index 0000000000000000000000000000000000000000..c789aa48fe4138ee9ff6b58a70fbb47100bfdeb0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3555.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 35, + 35 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3556.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3556.json" new file mode 100644 index 0000000000000000000000000000000000000000..eef3642cf3308d7f5dbee93e7764e20c7ddaf498 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3556.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playwrite DK Uloopet Guides", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 6, + 70 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3557.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3557.json" new file mode 100644 index 0000000000000000000000000000000000000000..9673676643db926afade49d9b9f20e7e7547390f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3557.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 60, + 74 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3558.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3558.json" new file mode 100644 index 0000000000000000000000000000000000000000..6edd907f1394ed2ff359360141eba8e797a6fb85 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3558.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 94, + 28 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3559.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3559.json" new file mode 100644 index 0000000000000000000000000000000000000000..2ea0e545ea3f9af6056126405c66b3551635ddf8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3559.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 44, + 50 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3560.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3560.json" new file mode 100644 index 0000000000000000000000000000000000000000..5d0cbb60d0fffbeb45c8c1f43feef074c58f87fa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3560.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 84, + 65 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3561.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3561.json" new file mode 100644 index 0000000000000000000000000000000000000000..c02748f044a32c83e4ecff54199ba97dfd9acda0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3561.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 35, + 55 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3562.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3562.json" new file mode 100644 index 0000000000000000000000000000000000000000..583f4f797ee7ac2f1fa8be9dc9122694a4dd1f38 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3562.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 12, + 92 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3563.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3563.json" new file mode 100644 index 0000000000000000000000000000000000000000..8d2c0a37d46b1a1d0d2205de35fa284018476b15 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3563.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 52, + 19 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3564.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3564.json" new file mode 100644 index 0000000000000000000000000000000000000000..4e447c77e084d1494ccfec7fe637c37f49a30e44 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3564.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 88, + 71 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3565.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3565.json" new file mode 100644 index 0000000000000000000000000000000000000000..79415a500bd57b8ed4edeedf26b5c2ecaac7a7d6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3565.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 8, + 55 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3566.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3566.json" new file mode 100644 index 0000000000000000000000000000000000000000..defab1eb27e154e53252885af90e8e980094995c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3566.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 58, + 53 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3567.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3567.json" new file mode 100644 index 0000000000000000000000000000000000000000..b3dde43871d96e5a6bc424f09acb3e7748eb5e05 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3567.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 63, + 10 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3568.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3568.json" new file mode 100644 index 0000000000000000000000000000000000000000..3d44ac806913a0de570a60922fdd9dfe08634f14 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3568.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 78, + 25 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3569.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3569.json" new file mode 100644 index 0000000000000000000000000000000000000000..9258d6fae9a9edbe0741745223cfa4d488ad490c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3569.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 5, + 56 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3570.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3570.json" new file mode 100644 index 0000000000000000000000000000000000000000..1d7ac447eed42165825aac6564270716ce658308 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3570.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 44, + 61 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3571.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3571.json" new file mode 100644 index 0000000000000000000000000000000000000000..d765fb4e5834cf8a96d9863b2905182776c439d4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3571.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 84, + 66 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3572.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3572.json" new file mode 100644 index 0000000000000000000000000000000000000000..9e07b5897028d4de28053797b36bfe52a1a6bf3b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3572.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 50, + 6 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3573.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3573.json" new file mode 100644 index 0000000000000000000000000000000000000000..55dc2fa6224103e93455a43dd4a31a512259ce2e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3573.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 4, + 43 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3574.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3574.json" new file mode 100644 index 0000000000000000000000000000000000000000..3c1333f72b621883807f34fcb0eab4dd8a067e00 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3574.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 63, + 86 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3575.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3575.json" new file mode 100644 index 0000000000000000000000000000000000000000..7db01b779a70a063ab77dd880c1874d5c98fb817 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3575.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 38, + 59 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3576.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3576.json" new file mode 100644 index 0000000000000000000000000000000000000000..e2d205d755c7a1ac8dcb6b3704f548440f627bfd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3576.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 99, + 11 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3577.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3577.json" new file mode 100644 index 0000000000000000000000000000000000000000..7539eb501e40a3e456b1e2dc72702a98f20a3115 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3577.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 58, + 84 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3578.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3578.json" new file mode 100644 index 0000000000000000000000000000000000000000..b63127e987b198041796da5bdcbab7bf3eefb7d0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3578.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 22, + 89 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3579.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3579.json" new file mode 100644 index 0000000000000000000000000000000000000000..585bbb36a92c61a397efc2f7d704f2cbf8a4f17c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3579.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 62, + 73 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3580.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3580.json" new file mode 100644 index 0000000000000000000000000000000000000000..8684c98680dcb0c9ccf3cebdc3bed3b33cb4652a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3580.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 43, + 94 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3581.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3581.json" new file mode 100644 index 0000000000000000000000000000000000000000..c22f602f6d47cd292e0087c45901a0e64d06f7ea --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3581.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 15, + 29 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3582.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3582.json" new file mode 100644 index 0000000000000000000000000000000000000000..b95de850aebe5b450c2cb13a342b7315eb20336f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3582.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 60, + 13 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3583.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3583.json" new file mode 100644 index 0000000000000000000000000000000000000000..42c781b11bc8d9f2261e1c953c9b45bdcece553b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3583.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 88, + 91 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3584.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3584.json" new file mode 100644 index 0000000000000000000000000000000000000000..7f63374731109720a70bdc9933dce748a4fbe409 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3584.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 53, + 94 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3585.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3585.json" new file mode 100644 index 0000000000000000000000000000000000000000..763ac20f896997a35e8094c67c4dabd4d8bf007f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3585.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 80, + 2 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3586.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3586.json" new file mode 100644 index 0000000000000000000000000000000000000000..a872477f3059d5cef434883cd26b9c8fac5fb469 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3586.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 21, + 17 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3587.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3587.json" new file mode 100644 index 0000000000000000000000000000000000000000..cc344e098dab9ea2fdfeda9da81cefe13729b36f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3587.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 34, + 60 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3588.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3588.json" new file mode 100644 index 0000000000000000000000000000000000000000..10643b506bc6581b165baecf1004056a4a3f4add --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3588.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 89, + 22 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3589.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3589.json" new file mode 100644 index 0000000000000000000000000000000000000000..1ff9df0cba4b697d90fed0837a85bc2872566345 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3589.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 21, + 0 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3590.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3590.json" new file mode 100644 index 0000000000000000000000000000000000000000..2e17774d565db7d879edd19129be200264bc763c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3590.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 8, + 42 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3591.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3591.json" new file mode 100644 index 0000000000000000000000000000000000000000..7466fd7620224a22d8c7a3019d955eb5fa5e81fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3591.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 81, + 80 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3592.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3592.json" new file mode 100644 index 0000000000000000000000000000000000000000..10117fe6c24b767001d398e045078607f2e4e469 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3592.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 63, + 26 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3593.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3593.json" new file mode 100644 index 0000000000000000000000000000000000000000..d796a32c2e01281334add00aa2ef96cdd2d6697a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3593.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 83, + 33 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3594.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3594.json" new file mode 100644 index 0000000000000000000000000000000000000000..b67dfe241ed7b0d58fafb843e1c9b1216d2eb2c5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3594.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 62, + 79 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3595.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3595.json" new file mode 100644 index 0000000000000000000000000000000000000000..df1bc03a210fad5475cd44d2db8f1a008b80b129 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3595.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 63, + 99 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3596.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3596.json" new file mode 100644 index 0000000000000000000000000000000000000000..4ab2f05ff54f4d581abb268d3b53b19d6f0fd5c3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3596.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 41, + 95 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3597.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3597.json" new file mode 100644 index 0000000000000000000000000000000000000000..1875f070ef45342ed444c5f22eb0429a3c43aa57 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3597.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 90, + 89 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3598.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3598.json" new file mode 100644 index 0000000000000000000000000000000000000000..6fca151f2c661d7916544c661a7cad160cae54b1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3598.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 28, + 96 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3599.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3599.json" new file mode 100644 index 0000000000000000000000000000000000000000..7554c0a7349fe3835cbbbcc6e2b29b2490922394 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3599.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 94, + 14 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3600.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3600.json" new file mode 100644 index 0000000000000000000000000000000000000000..c7d41ec56a2b6d1322fd8464d3d5e28760fe0fca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3600.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 39, + 23 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3601.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3601.json" new file mode 100644 index 0000000000000000000000000000000000000000..ae5ed3dc24b19585a5871526bcc6f5a19edb7e94 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3601.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 82, + 34 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3602.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3602.json" new file mode 100644 index 0000000000000000000000000000000000000000..b8309d1803101e4e35a0b21291eabffeb3a50ecc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3602.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 92, + 19 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3603.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3603.json" new file mode 100644 index 0000000000000000000000000000000000000000..fbde6105a0295bbb46108f84c1501bcdb256a572 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3603.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 10, + 95 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3604.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3604.json" new file mode 100644 index 0000000000000000000000000000000000000000..61b8da6764b80f6c6a032225ca2382d0955560e3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3604.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 66, + 92 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3605.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3605.json" new file mode 100644 index 0000000000000000000000000000000000000000..c1e48433e48bbe8a6d811ed36b46f315095a1361 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3605.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 42, + 14 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3606.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3606.json" new file mode 100644 index 0000000000000000000000000000000000000000..8523d50f2582a99bd898d6bb90c3349f74b6a6de --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3606.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 44, + 57 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3607.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3607.json" new file mode 100644 index 0000000000000000000000000000000000000000..e8f1b91b078ba6e9601a2dcec617098a5d5f14dc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3607.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 22, + 37 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3608.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3608.json" new file mode 100644 index 0000000000000000000000000000000000000000..8f727db4c5fef706f185e7f3f8472389ca779ab4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3608.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 51, + 21 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3609.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3609.json" new file mode 100644 index 0000000000000000000000000000000000000000..f9d5a8e81e00e02a2fc4b3e3a8018c77673e03e9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3609.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 40, + 70 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3610.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3610.json" new file mode 100644 index 0000000000000000000000000000000000000000..a661206af19eddbdb5a5aa85c9951ba1d468df98 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3610.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 47, + 25 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3611.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3611.json" new file mode 100644 index 0000000000000000000000000000000000000000..0976a3a7092885e18369a59c1a41b5662985c3b0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3611.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 54, + 94 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3612.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3612.json" new file mode 100644 index 0000000000000000000000000000000000000000..2afc3e5eea4a6209cddc5296c0e15c8e1631a692 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3612.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 10, + 16 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3613.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3613.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f9240eeca2ee40c309a0542a247464ca33e8bd1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3613.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 4, + 65 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3614.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3614.json" new file mode 100644 index 0000000000000000000000000000000000000000..dbedbae3b15b3c0798ca7ff1b35d6425c4780ce1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3614.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 67, + 85 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3615.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3615.json" new file mode 100644 index 0000000000000000000000000000000000000000..42662ec0fe4649267e5fc572556acda634b2b3de --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3615.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 19, + 42 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3616.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3616.json" new file mode 100644 index 0000000000000000000000000000000000000000..7dda916ab237ebfd2c660a3ff0bf37f2a13ba115 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3616.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 55, + 37 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3617.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3617.json" new file mode 100644 index 0000000000000000000000000000000000000000..51b118a4531bbdf2950831a28ab50f58bc53585b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3617.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 35, + 29 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3618.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3618.json" new file mode 100644 index 0000000000000000000000000000000000000000..927120a6c8d6f87201f6665920c92c69c7546407 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3618.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 94, + 97 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3619.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3619.json" new file mode 100644 index 0000000000000000000000000000000000000000..13222f66cebcaf27451e163d086fa508e76e3b5f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3619.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 47, + 51 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3620.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3620.json" new file mode 100644 index 0000000000000000000000000000000000000000..25f4391aa50a8e3b3a7e6517de1f13e7c8f46eef --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3620.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 14, + 68 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3621.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3621.json" new file mode 100644 index 0000000000000000000000000000000000000000..6902a49357c7b4294d05ca4cb25845f9d0705705 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3621.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 97, + 0 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3622.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3622.json" new file mode 100644 index 0000000000000000000000000000000000000000..7627a278501381ba692e4c8ba06f9a5a52eb57bc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3622.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 2, + 81 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3623.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3623.json" new file mode 100644 index 0000000000000000000000000000000000000000..b0b0f14ae4abdeb76618291e0e057d4e61b2b09d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3623.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 37, + 53 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3624.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3624.json" new file mode 100644 index 0000000000000000000000000000000000000000..6c88c1dc1cd30dfd8f8c4fd09c16d69ba4058e34 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3624.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 86, + 88 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3625.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3625.json" new file mode 100644 index 0000000000000000000000000000000000000000..1d3944c313263168709092557ce9fe5228f81929 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3625.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 13, + 98 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3626.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3626.json" new file mode 100644 index 0000000000000000000000000000000000000000..fa44a6958259d0d4a1aa97d0bc0fc31dc93157a9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3626.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 3, + 79 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3627.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3627.json" new file mode 100644 index 0000000000000000000000000000000000000000..8a939f960a501fe2fd243bfc046bbf026d544500 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3627.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 97, + 3 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3628.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3628.json" new file mode 100644 index 0000000000000000000000000000000000000000..ba2decd3b0bc24c1cc95a497bf4cb4828c370949 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3628.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 44, + 72 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3629.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3629.json" new file mode 100644 index 0000000000000000000000000000000000000000..c076502f13fb5e11417679c946dedf5f693fc04d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3629.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 14, + 42 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3630.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3630.json" new file mode 100644 index 0000000000000000000000000000000000000000..2f31310a5ea033a02969a6f37ea78309a13e9082 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3630.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 22, + 20 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3631.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3631.json" new file mode 100644 index 0000000000000000000000000000000000000000..c53ffb1e401196f32e6a2756c6af1ade6d485d6d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3631.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 43, + 86 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3632.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3632.json" new file mode 100644 index 0000000000000000000000000000000000000000..909adf3974926532ea695d7e67c845153f5257af --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3632.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 69, + 6 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3633.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3633.json" new file mode 100644 index 0000000000000000000000000000000000000000..261b1ddf5f32d06721b28a9ee37abb965829af96 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3633.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 83, + 14 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3634.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3634.json" new file mode 100644 index 0000000000000000000000000000000000000000..362c86feb35a75ff36344358624cc3584928b3da --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3634.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 68, + 59 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3635.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3635.json" new file mode 100644 index 0000000000000000000000000000000000000000..e7beeddb160e0e7c0d3befd4a0eee0eed990e0b5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3635.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 68, + 90 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3636.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3636.json" new file mode 100644 index 0000000000000000000000000000000000000000..3e6eb15b62c330e4954ab16b7ec43d0f48920bc3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3636.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 35, + 10 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3637.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3637.json" new file mode 100644 index 0000000000000000000000000000000000000000..69c915093258dcadfec3ce589abac81c2eb0e475 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3637.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 25, + 56 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3638.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3638.json" new file mode 100644 index 0000000000000000000000000000000000000000..043f77e22984a3efbd9e2986117ce627ebfcedec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3638.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 34, + 23 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3639.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3639.json" new file mode 100644 index 0000000000000000000000000000000000000000..d6ee93dc6cea0c1321bf92ae29cd207942364b12 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3639.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 35, + 86 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3640.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3640.json" new file mode 100644 index 0000000000000000000000000000000000000000..87f79c21b561d51f4db619b5d3bd1faf5d97178f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3640.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 41, + 96 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3641.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3641.json" new file mode 100644 index 0000000000000000000000000000000000000000..06bf7ab4ba332fae82f9e5b7c9fb17a24b4ceea9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3641.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 64, + 7 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3642.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3642.json" new file mode 100644 index 0000000000000000000000000000000000000000..08358cb846f83fad761ad50e9307b36b1b073ba6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3642.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 81, + 79 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3643.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3643.json" new file mode 100644 index 0000000000000000000000000000000000000000..6ed8e37cbc40d35372fcbc576fd06f5872a21a57 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3643.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 71, + 72 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3644.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3644.json" new file mode 100644 index 0000000000000000000000000000000000000000..e5d1bd9402402cef6f8fce22050ee6766502b8d5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3644.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 32, + 94 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3645.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3645.json" new file mode 100644 index 0000000000000000000000000000000000000000..228853ec175faa8eef68090d50e0127a111d5a15 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3645.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 91, + 28 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3646.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3646.json" new file mode 100644 index 0000000000000000000000000000000000000000..d11197752a443ffba328832a4ba92c83dc3f0dcd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3646.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 41, + 24 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3647.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3647.json" new file mode 100644 index 0000000000000000000000000000000000000000..e97b7bc98f0a05c4632ade0f129a38ebdec8a387 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3647.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 16, + 10 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3648.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3648.json" new file mode 100644 index 0000000000000000000000000000000000000000..9140436d3ae091a414359dd8e7ae84cbf89e7e2b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3648.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 57, + 74 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3649.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3649.json" new file mode 100644 index 0000000000000000000000000000000000000000..425dceb30a1c64b490ebbc268613ee65d2150778 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3649.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 80, + 88 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3650.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3650.json" new file mode 100644 index 0000000000000000000000000000000000000000..7220df46723a1589cda2162132dc3c9badd17db1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3650.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 22, + 26 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3651.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3651.json" new file mode 100644 index 0000000000000000000000000000000000000000..eb5ebd923803b1576dd3ab6da3bfd8d6bede2734 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3651.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 49, + 75 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3652.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3652.json" new file mode 100644 index 0000000000000000000000000000000000000000..62525a938034bc1ceb72efb261ab835fa5637f38 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3652.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 21, + 89 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3653.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3653.json" new file mode 100644 index 0000000000000000000000000000000000000000..6ea07d10f6f80fb301e07db88661268678e52706 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3653.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 32, + 62 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3654.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3654.json" new file mode 100644 index 0000000000000000000000000000000000000000..858e6a7d596b1da18a10436074185a70fe47e579 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3654.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 18, + 27 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3655.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3655.json" new file mode 100644 index 0000000000000000000000000000000000000000..3ceea4bff79574313aeac1fd99175cc062070641 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3655.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 98, + 48 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3656.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3656.json" new file mode 100644 index 0000000000000000000000000000000000000000..fe884916a7858158ea6fbd70e6c7834a728ca575 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3656.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 70, + 92 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3657.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3657.json" new file mode 100644 index 0000000000000000000000000000000000000000..1596a24e344437a49f8387e2afbf2a3b1315c113 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3657.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 73, + 85 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3658.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3658.json" new file mode 100644 index 0000000000000000000000000000000000000000..9de2bd328d15374977b7bfcefd3de7fe66e20f78 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3658.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 55, + 98 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3659.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3659.json" new file mode 100644 index 0000000000000000000000000000000000000000..8590aa2f9ff3f32ae8aeb993ddfad2a14628bd6e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3659.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 29, + 93 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3660.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3660.json" new file mode 100644 index 0000000000000000000000000000000000000000..120fe8c9739b5778f0b5d42291163d400fed9b31 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3660.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 57, + 78 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3661.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3661.json" new file mode 100644 index 0000000000000000000000000000000000000000..fbb91506dbf6f8bda762bfcd9fd50cdeed10dbb3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3661.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 67, + 14 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3662.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3662.json" new file mode 100644 index 0000000000000000000000000000000000000000..dcd424b469dcf466f1d304224c5eb6dcfbd8c771 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3662.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 80, + 11 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3663.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3663.json" new file mode 100644 index 0000000000000000000000000000000000000000..7a097cf4c593eb1ecbf0ce6e6b15894958e480a9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3663.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 62, + 75 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3664.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3664.json" new file mode 100644 index 0000000000000000000000000000000000000000..01821e35b78722d2f97a4d1723b27d4b5d23333b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3664.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 28, + 72 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3665.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3665.json" new file mode 100644 index 0000000000000000000000000000000000000000..c7c90493b67aef528872ede1f5d4aa295b56cd7a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3665.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 80, + 25 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3666.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3666.json" new file mode 100644 index 0000000000000000000000000000000000000000..e3e0afae870850ee443f1b7fc5069edb390a3cdf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3666.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 39, + 59 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3667.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3667.json" new file mode 100644 index 0000000000000000000000000000000000000000..3fa3113294ce9f8b0dd9e2a3fd873b5f7a31bc70 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3667.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 39, + 86 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3668.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3668.json" new file mode 100644 index 0000000000000000000000000000000000000000..445deebf8e625390babb047ac392ea6a20046fb0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3668.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 97, + 60 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3669.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3669.json" new file mode 100644 index 0000000000000000000000000000000000000000..9e571bd221983cba92dfba9aa802730df635d24d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3669.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 50, + 29 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3670.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3670.json" new file mode 100644 index 0000000000000000000000000000000000000000..0b562f485d55a881df2816d9f0d421ce74866671 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3670.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 48, + 60 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3671.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3671.json" new file mode 100644 index 0000000000000000000000000000000000000000..6513d561cafe491215e7c69bffd5a94542c50402 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3671.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 48, + 41 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3672.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3672.json" new file mode 100644 index 0000000000000000000000000000000000000000..08abb5bfd01fe702b87aa37d33e6914f344a19b2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3672.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 89, + 66 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3673.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3673.json" new file mode 100644 index 0000000000000000000000000000000000000000..700c4dc428f2af46487483f96865caf8bb8c249b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3673.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 65, + 64 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3674.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3674.json" new file mode 100644 index 0000000000000000000000000000000000000000..8cfb9f821c542a73c8ae5c61ddf3b31ca926322f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3674.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.0", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 25, + 38 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3675.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3675.json" new file mode 100644 index 0000000000000000000000000000000000000000..d64bff3a42851312218910968c3c77f56f4dc023 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3675.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 11, + 24 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3676.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3676.json" new file mode 100644 index 0000000000000000000000000000000000000000..518089634a719417e2938c114245095ced92fe59 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3676.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 75, + 59 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3677.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3677.json" new file mode 100644 index 0000000000000000000000000000000000000000..5edccd984dad96472d69a811ff5a0f32d5ec492c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3677.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 1, + 23 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3678.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3678.json" new file mode 100644 index 0000000000000000000000000000000000000000..8032e075977206731bf4f8328574c54c740cf2c0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3678.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 61, + 31 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3679.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3679.json" new file mode 100644 index 0000000000000000000000000000000000000000..944c313703bfa914eb27863f9054e431255c7dfd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3679.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 64, + 61 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3680.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3680.json" new file mode 100644 index 0000000000000000000000000000000000000000..e78449649216a2c79b4276329facf361edb7b624 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3680.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "3.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 58, + 30 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3681.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3681.json" new file mode 100644 index 0000000000000000000000000000000000000000..62e7d113dfed33b5eb2c2273d3a66e133d6145cd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3681.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 92, + 59 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3682.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3682.json" new file mode 100644 index 0000000000000000000000000000000000000000..cef53aa3458f08e7f27973f3b6a7b914c7131269 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3682.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 47, + 37 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3683.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3683.json" new file mode 100644 index 0000000000000000000000000000000000000000..1c8e81225a18403d894fe0ba82d43b464ef3f070 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3683.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 56, + 78 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3684.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3684.json" new file mode 100644 index 0000000000000000000000000000000000000000..05cd5da481d259d69b6261d71c98d0fa60b1a6fa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3684.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 43, + 5 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3685.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3685.json" new file mode 100644 index 0000000000000000000000000000000000000000..6a693d7734a3d06f5b7a974d8a8700f68e965aca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3685.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 11, + 60 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3686.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3686.json" new file mode 100644 index 0000000000000000000000000000000000000000..6620b59823b5e9b6717ec64f1f68569245a51182 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3686.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 73, + 86 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3687.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3687.json" new file mode 100644 index 0000000000000000000000000000000000000000..d223e8e54cc4eb707c8b7293830871f6282f4e4a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3687.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 6, + 54 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3688.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3688.json" new file mode 100644 index 0000000000000000000000000000000000000000..65055c82c42f925b96bebd8ba8d9c3fa6a0c2c9f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3688.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 9, + 98 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3689.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3689.json" new file mode 100644 index 0000000000000000000000000000000000000000..87bf2d07d4b5b5c14f2ba172d2afdce9cc1ffca3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3689.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 74, + 89 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3690.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3690.json" new file mode 100644 index 0000000000000000000000000000000000000000..e011a6d2051dee5198a6974ed1b5aaea68540443 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3690.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 70, + 43 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3691.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3691.json" new file mode 100644 index 0000000000000000000000000000000000000000..bfb3eea0529d6a72774ffe548b02f84314f720e6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3691.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 99, + 35 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3692.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3692.json" new file mode 100644 index 0000000000000000000000000000000000000000..8b2e2e429a2b04489365eaaed459822f3808d84a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3692.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 14, + 27 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3693.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3693.json" new file mode 100644 index 0000000000000000000000000000000000000000..1475c92ab1cb17cf5cde400694fda68e6e0ef505 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3693.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 28, + 42 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3694.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3694.json" new file mode 100644 index 0000000000000000000000000000000000000000..504153e1ea0bb099555248802a19f94dfa7ed783 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3694.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 34, + 49 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3695.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3695.json" new file mode 100644 index 0000000000000000000000000000000000000000..bd49ec61656de8f3693753b481d79480e1ae1e00 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3695.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 16, + 40 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3696.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3696.json" new file mode 100644 index 0000000000000000000000000000000000000000..ce4e3f951e6043bcce29a17b0a6abacba2f87881 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3696.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 84, + 7 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3697.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3697.json" new file mode 100644 index 0000000000000000000000000000000000000000..9a7ea27c56051899940de2dac0f407c14effd398 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3697.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 99, + 75 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3698.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3698.json" new file mode 100644 index 0000000000000000000000000000000000000000..0caa1574b980e9d1590ac02c9c65b3f3f349fbf5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3698.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 75, + 69 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3699.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3699.json" new file mode 100644 index 0000000000000000000000000000000000000000..08c61110ddb1d37bda2c44ed8e6ce1788bc2409e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3699.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 58, + 12 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3700.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3700.json" new file mode 100644 index 0000000000000000000000000000000000000000..f933aa0cd41ae7e14831adc394768e18a6c17730 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3700.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 53, + 96 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3701.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3701.json" new file mode 100644 index 0000000000000000000000000000000000000000..af79c08a06d5bb44ac8c7620f71f0472db511f1b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3701.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 72, + 54 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3702.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3702.json" new file mode 100644 index 0000000000000000000000000000000000000000..4c922f5844e96204e789864442521b4e6bda2093 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3702.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 71, + 91 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3703.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3703.json" new file mode 100644 index 0000000000000000000000000000000000000000..5ca0ed5978caee0be6625023abd0099efdfb041b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3703.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 39, + 14 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3704.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3704.json" new file mode 100644 index 0000000000000000000000000000000000000000..2abfbd084c21dc1a2f07c2ec73052d6633858f92 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3704.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 24, + 18 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3705.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3705.json" new file mode 100644 index 0000000000000000000000000000000000000000..1985175dfc80d0e46cc982ad4b0be9f4ba892f59 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3705.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 20, + 83 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3706.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3706.json" new file mode 100644 index 0000000000000000000000000000000000000000..1be856497d5087ad365c2aa2b08a811894519532 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3706.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playwrite DK Uloopet Guides", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 92, + 23 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3707.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3707.json" new file mode 100644 index 0000000000000000000000000000000000000000..a3d3a56c55c7cd5631a20c431dd4a5656557ebb0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3707.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 59, + 24 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3708.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3708.json" new file mode 100644 index 0000000000000000000000000000000000000000..053023cd139a47eb2c2acb43054c0e2f970585cd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3708.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.5", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 33, + 16 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3709.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3709.json" new file mode 100644 index 0000000000000000000000000000000000000000..368cbc84303587cd8f4d71faf3cc779928f105b6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3709.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 93, + 45 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3710.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3710.json" new file mode 100644 index 0000000000000000000000000000000000000000..ddcac0a9f891463cd3e60e2ea9ae5e9a49263b2d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3710.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 60, + 58 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3711.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3711.json" new file mode 100644 index 0000000000000000000000000000000000000000..d3edd3ceea0433251a256a2bf396ff73f8c4d54a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3711.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Padauk", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 20, + 91 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3712.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3712.json" new file mode 100644 index 0000000000000000000000000000000000000000..1e84a81750fb490540ee7c0d2b9020c6e7da00d6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3712.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "3.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 40, + 20 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3713.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3713.json" new file mode 100644 index 0000000000000000000000000000000000000000..f67cc1d1d25751907ddcf88759e1d38075ce42ce --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3713.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 60, + 61 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3714.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3714.json" new file mode 100644 index 0000000000000000000000000000000000000000..6a87c166047c32395477eeb6b69639f65f07d548 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3714.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 48, + 17 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3715.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3715.json" new file mode 100644 index 0000000000000000000000000000000000000000..1cc3cb24c3aa2fb2a51ca95092ce891d2c0c04d4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3715.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 73, + 40 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3716.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3716.json" new file mode 100644 index 0000000000000000000000000000000000000000..af451f42d4605727636f81caa2aa9b0dace7a220 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3716.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 50, + 40 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3717.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3717.json" new file mode 100644 index 0000000000000000000000000000000000000000..95a7698761fa95b59326a8ec51a75c915761ed20 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3717.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 42, + 61 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3718.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3718.json" new file mode 100644 index 0000000000000000000000000000000000000000..4eaa14e1b09dc681274d3ca48bbca7302c0a4176 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3718.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 83, + 12 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3719.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3719.json" new file mode 100644 index 0000000000000000000000000000000000000000..dc63f922d8673c61f4b331412625598c9787304b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3719.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 11, + 7 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3720.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3720.json" new file mode 100644 index 0000000000000000000000000000000000000000..00715dd6ef8ba87a2cc7e800aedb5cb26fd069b3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3720.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 39, + 6 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3721.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3721.json" new file mode 100644 index 0000000000000000000000000000000000000000..8bd831fb3f40e083616ec58192efec4d81d6365d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3721.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 89, + 62 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3722.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3722.json" new file mode 100644 index 0000000000000000000000000000000000000000..ebf598c7602ee2567296dd7898768d45ccbbc80a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3722.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 3, + 68 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3723.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3723.json" new file mode 100644 index 0000000000000000000000000000000000000000..a0fcbed642d4be33103c842a95e3cadefa2122c5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3723.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 3, + 74 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3724.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3724.json" new file mode 100644 index 0000000000000000000000000000000000000000..fa9e5aaf68da6bbe319b62211dfeb5abbdcc9e9c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3724.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 40, + 71 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3725.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3725.json" new file mode 100644 index 0000000000000000000000000000000000000000..eb2b10d415290f199fd53a53761165a2d19fba8d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3725.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 65, + 26 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3726.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3726.json" new file mode 100644 index 0000000000000000000000000000000000000000..7286c0f8dea9fb19d9cc811ec6b26d68626f05af --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3726.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 94, + 13 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3727.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3727.json" new file mode 100644 index 0000000000000000000000000000000000000000..e578898d2e4f3d4fa97a73889e4c046b67efcd4f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3727.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 64, + 99 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3728.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3728.json" new file mode 100644 index 0000000000000000000000000000000000000000..dd54319a4b05e7de09c544fff99d6e2d906b4e18 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3728.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 58, + 35 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3729.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3729.json" new file mode 100644 index 0000000000000000000000000000000000000000..c4ecfaeec775b3d163d646c71a46c130361a5c63 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3729.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 69, + 26 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3730.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3730.json" new file mode 100644 index 0000000000000000000000000000000000000000..1be7e495a13eaabd0ac79bc708d9070dfc297398 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3730.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Padauk", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 99, + 91 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3731.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3731.json" new file mode 100644 index 0000000000000000000000000000000000000000..2996465a7a10bcab28b121c7d0421835ef4ae4ce --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3731.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 15, + 60 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3732.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3732.json" new file mode 100644 index 0000000000000000000000000000000000000000..8fa21b3443ce50258183e32a9f764a4bb2c9fb7c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3732.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 30, + 62 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3733.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3733.json" new file mode 100644 index 0000000000000000000000000000000000000000..f8827b954dfe7703882580869116f51144120d2b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3733.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 88, + 4 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3734.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3734.json" new file mode 100644 index 0000000000000000000000000000000000000000..361a3539f70ff299b72916592ab9c970a3df0eea --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3734.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 42, + 10 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3735.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3735.json" new file mode 100644 index 0000000000000000000000000000000000000000..e016e64e6ed77b9356bb01b8ff69d0b12388e993 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3735.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 30, + 75 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3736.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3736.json" new file mode 100644 index 0000000000000000000000000000000000000000..b1561914f50e52043304778f8b12277b9b49a7c0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3736.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.7", + "shadow": "3.0", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 89, + 51 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3737.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3737.json" new file mode 100644 index 0000000000000000000000000000000000000000..f5588a7f35fd38d4c6cae5524f0067aaebc69f4b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3737.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 81, + 64 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3738.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3738.json" new file mode 100644 index 0000000000000000000000000000000000000000..18b66e50b366562ababfacf40d22b6543f18a60f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3738.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 15, + 81 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3739.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3739.json" new file mode 100644 index 0000000000000000000000000000000000000000..849fe1a76b060f44fef0aec46905ebd051f1c4cb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3739.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 18, + 69 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3740.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3740.json" new file mode 100644 index 0000000000000000000000000000000000000000..fddc55a932813d85b1323bc28957b1afee8bb6aa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3740.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 1, + 22 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3741.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3741.json" new file mode 100644 index 0000000000000000000000000000000000000000..2045b23d484009619e88d0f3717ca991b1f72982 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3741.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 75, + 70, + 76 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3742.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3742.json" new file mode 100644 index 0000000000000000000000000000000000000000..4c74ef796e2e16317abed3f16dace065263c1027 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3742.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 64, + 87 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3743.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3743.json" new file mode 100644 index 0000000000000000000000000000000000000000..78f2bfc79aab500c37ed77f1c397dda9dd3ab412 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3743.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 67, + 16 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3744.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3744.json" new file mode 100644 index 0000000000000000000000000000000000000000..b11f997684da43732e84e20192e658309dafab5a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3744.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 18, + 40 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3745.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3745.json" new file mode 100644 index 0000000000000000000000000000000000000000..13da56241241b39c265cc8ed6a02a48fe028b68b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3745.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 28, + 92 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3746.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3746.json" new file mode 100644 index 0000000000000000000000000000000000000000..d49f9391a339c00278668ca6a510c925207a4664 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3746.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 4, + 71 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3747.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3747.json" new file mode 100644 index 0000000000000000000000000000000000000000..7ad5a584ead7797f5dd4f85272e2be615c1b0139 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3747.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 4, + 98 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3748.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3748.json" new file mode 100644 index 0000000000000000000000000000000000000000..eac9f4d69465ad2ac201dfb3dcf77bb2296a786c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3748.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 87, + 86 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3749.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3749.json" new file mode 100644 index 0000000000000000000000000000000000000000..a74efd73e67ffbfaa6a90efcc2e34de8c46f4ed8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3749.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 100, + 76 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3750.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3750.json" new file mode 100644 index 0000000000000000000000000000000000000000..84fefff61a0b380aa42e75cdc13a95801ba0415c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3750.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 27, + 8 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3751.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3751.json" new file mode 100644 index 0000000000000000000000000000000000000000..ebe2d325ad547a648b3c45804ec251bf556133a0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3751.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 65, + 11 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3752.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3752.json" new file mode 100644 index 0000000000000000000000000000000000000000..10649becd03b8ce1ea5d992870a7919bd2e6e66c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3752.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 52, + 37, + 76 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3753.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3753.json" new file mode 100644 index 0000000000000000000000000000000000000000..3678c214bd750a6fcba7d469b3cbdd8ba8b98697 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3753.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 89, + 6 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3754.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3754.json" new file mode 100644 index 0000000000000000000000000000000000000000..07626b0474e80f9033f393173a1c364a47cb252a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3754.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 65, + 9 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3755.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3755.json" new file mode 100644 index 0000000000000000000000000000000000000000..8d9359cb24af2a1548943356a45e10ba76fd76c2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3755.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 68, + 64 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3756.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3756.json" new file mode 100644 index 0000000000000000000000000000000000000000..c4ae4819aa33d4e73bfe979451ee658590694b31 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3756.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 43, + 10 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3757.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3757.json" new file mode 100644 index 0000000000000000000000000000000000000000..a70774719ec1011db84681c761ec5e4d2e1242fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3757.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 92, + 73 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3758.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3758.json" new file mode 100644 index 0000000000000000000000000000000000000000..2d0f4a52db95b63bde603af33283fac012171858 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3758.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 67, + 65 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3759.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3759.json" new file mode 100644 index 0000000000000000000000000000000000000000..0183efd5cec8a5c4ccf5fe11d02e1d37d3e988ca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3759.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 14, + 73 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3760.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3760.json" new file mode 100644 index 0000000000000000000000000000000000000000..381638fcc014e1f52bfadff69fb70b8023e02388 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3760.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 74, + 87 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3761.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3761.json" new file mode 100644 index 0000000000000000000000000000000000000000..51309c8d1ee51ca7dbf8c15ccf87c3b0838482eb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3761.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 92, + 5 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3762.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3762.json" new file mode 100644 index 0000000000000000000000000000000000000000..395c1f886403f11f6a929b88711bb8aeb297092b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3762.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 100, + 60 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3763.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3763.json" new file mode 100644 index 0000000000000000000000000000000000000000..48207b8f0032980fe9f602837335da52d552105d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3763.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 19, + 38 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3764.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3764.json" new file mode 100644 index 0000000000000000000000000000000000000000..333bbf76e3680ba8b3aef45456ef5e7e084bdc8b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3764.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.9", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 62, + 26 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3765.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3765.json" new file mode 100644 index 0000000000000000000000000000000000000000..7e9455b1274de5a2aab08f9be54c7b19a3c953b4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3765.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 84, + 3 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3766.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3766.json" new file mode 100644 index 0000000000000000000000000000000000000000..4b0d47c1891fe6ab827f194f05cd9d8d15d4ce3f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3766.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 45, + 63 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3767.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3767.json" new file mode 100644 index 0000000000000000000000000000000000000000..949504b410ab5e07d09a0745c724bd140701722a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3767.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 71, + 81 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3768.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3768.json" new file mode 100644 index 0000000000000000000000000000000000000000..fa8e09cf0c5762fb10fbad265b384fb5604462a5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3768.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 26, + 55 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3769.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3769.json" new file mode 100644 index 0000000000000000000000000000000000000000..93066db3eee903f818a2c2a695684fad0764020c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3769.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 77, + 63 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3770.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3770.json" new file mode 100644 index 0000000000000000000000000000000000000000..c5d4466773b09e1d032a918707477cad62cfffef --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3770.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 17, + 26 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3771.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3771.json" new file mode 100644 index 0000000000000000000000000000000000000000..3364988a6b56d06a4c88ff7a78e440c638fa8268 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3771.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 40, + 77 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3772.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3772.json" new file mode 100644 index 0000000000000000000000000000000000000000..25c52f61592a10e56eee4cdf74fb33de23829770 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3772.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 92, + 34 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3773.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3773.json" new file mode 100644 index 0000000000000000000000000000000000000000..bec2cfbb191086c0919be71adae4dcacca08e781 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3773.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 8, + 44 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3774.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3774.json" new file mode 100644 index 0000000000000000000000000000000000000000..d76ed9fdb53241b0b4c67fdc657334d06fe7dfc3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3774.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon Mono", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 91, + 53 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3775.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3775.json" new file mode 100644 index 0000000000000000000000000000000000000000..489d86124b01c8fc7afb801879945bcc3dd3e747 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3775.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 86, + 56 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3776.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3776.json" new file mode 100644 index 0000000000000000000000000000000000000000..0d415647ed330d44e4ea51ac7d1f249c0981f35c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3776.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 70, + 36 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3777.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3777.json" new file mode 100644 index 0000000000000000000000000000000000000000..90e6a6f067880e255dfb0bdd9a581516aa939e95 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3777.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 29, + 30 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3778.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3778.json" new file mode 100644 index 0000000000000000000000000000000000000000..792f19808be8c6d2daf63892d108d83191f6d41f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3778.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 96, + 85 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3779.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3779.json" new file mode 100644 index 0000000000000000000000000000000000000000..14be41822de924b082411a66570d0fdbde3e4da0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3779.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 39, + 85 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3780.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3780.json" new file mode 100644 index 0000000000000000000000000000000000000000..1b543668d4582aa33f9b61cb5e7a0abe40833397 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3780.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 34, + 15 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3781.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3781.json" new file mode 100644 index 0000000000000000000000000000000000000000..1047b2d4de2f17a8bb6b3f4e692b7f836537ac5a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3781.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 17, + 86 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3782.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3782.json" new file mode 100644 index 0000000000000000000000000000000000000000..8f67d923cb320bb06c188a407dfd0388b5b0b853 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3782.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 6, + 89 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3783.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3783.json" new file mode 100644 index 0000000000000000000000000000000000000000..cad1bccc262052dcf3e0645c0039c7bce363a306 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3783.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.0", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 56, + 91 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3784.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3784.json" new file mode 100644 index 0000000000000000000000000000000000000000..2ba7b67b28385b8583b8260a71a3fe2aa897ce81 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3784.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 70, + 32 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3785.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3785.json" new file mode 100644 index 0000000000000000000000000000000000000000..000648524411d86aeef57e0b508ccbb066493b38 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3785.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 45, + 60 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3786.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3786.json" new file mode 100644 index 0000000000000000000000000000000000000000..f4e09caef2ad118e45feeebcb80a3fb9be41b3fe --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3786.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 86, + 61 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3787.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3787.json" new file mode 100644 index 0000000000000000000000000000000000000000..23db11d12d60fe58bc6eea16dac5b99196c0d250 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3787.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 81, + 80, + 82 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3788.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3788.json" new file mode 100644 index 0000000000000000000000000000000000000000..1f5ce52affc8202e678b44f907a6a2e40a3e3503 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3788.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "3.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 78, + 62 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3789.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3789.json" new file mode 100644 index 0000000000000000000000000000000000000000..6ee03928eaee661935a38a64ee37f1894692859d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3789.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 66, + 77 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3790.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3790.json" new file mode 100644 index 0000000000000000000000000000000000000000..9ccaa1e626c9f20e9b5bfa4eae1a0cf4419b4a5a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3790.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 54, + 36 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3791.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3791.json" new file mode 100644 index 0000000000000000000000000000000000000000..e8866099eccb2257caf50b79ebf21898c772e721 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3791.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 59, + 62 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3792.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3792.json" new file mode 100644 index 0000000000000000000000000000000000000000..7b9863e2d3a766251e78d20613771e2e166e5044 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3792.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 73, + 89 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3793.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3793.json" new file mode 100644 index 0000000000000000000000000000000000000000..8d0dc121797242d5a65107c55c19d52fa1b8452e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3793.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 47, + 17 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3794.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3794.json" new file mode 100644 index 0000000000000000000000000000000000000000..75dbd0b794e15007f80abe4b6a2df2e954e6a73b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3794.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 77, + 51 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3795.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3795.json" new file mode 100644 index 0000000000000000000000000000000000000000..57684c8f29b1f8d646f75d28ecec9dcd61fba985 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3795.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 97, + 36 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3796.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3796.json" new file mode 100644 index 0000000000000000000000000000000000000000..1e8f205bb5b018f175a8f5a08b9af2f85d70691f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3796.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 53, + 86 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3797.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3797.json" new file mode 100644 index 0000000000000000000000000000000000000000..95a28532c732396403ad82051321e3092647950a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3797.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 83, + 98 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3798.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3798.json" new file mode 100644 index 0000000000000000000000000000000000000000..632bcee79499944cadeaa2f7f666dba92fce8e33 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3798.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 42, + 54 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3799.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3799.json" new file mode 100644 index 0000000000000000000000000000000000000000..2524107d55b18a989ec49e8e41914adfc854ea0f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3799.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.4", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 30, + 23 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3800.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3800.json" new file mode 100644 index 0000000000000000000000000000000000000000..1565d1f77433f2442d2f544169c6ebc56d674185 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3800.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 3, + 55 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3801.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3801.json" new file mode 100644 index 0000000000000000000000000000000000000000..a11c7d814c17d5d7877085f9ea9754bb74beca36 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3801.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 0, + 94 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3802.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3802.json" new file mode 100644 index 0000000000000000000000000000000000000000..f8474094e98659aecc84fe7f18436307064af47e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3802.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 21, + 69 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3803.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3803.json" new file mode 100644 index 0000000000000000000000000000000000000000..972014cc8e0bc3c13dee809571b0e713ac10e15a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3803.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 67, + 40 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3804.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3804.json" new file mode 100644 index 0000000000000000000000000000000000000000..25ead4f0cb924f991145ab58c3838312b3e65944 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3804.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 54, + 61 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3805.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3805.json" new file mode 100644 index 0000000000000000000000000000000000000000..72b224f7a99ced14277df9c28242145911555db3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3805.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 89, + 0 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3806.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3806.json" new file mode 100644 index 0000000000000000000000000000000000000000..69345e2a21eda817881bf816219825c42f4443ca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3806.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 67, + 79 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3807.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3807.json" new file mode 100644 index 0000000000000000000000000000000000000000..c89b724c8ef4674bad8e32eff12fd63c0846206d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3807.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 95, + 90 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3808.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3808.json" new file mode 100644 index 0000000000000000000000000000000000000000..a299fb0793a304e485daf118f1600c31317c0242 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3808.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 37, + 55 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3809.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3809.json" new file mode 100644 index 0000000000000000000000000000000000000000..ef1aa0582da43d8a66f0ebbf819e28adf04ce969 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3809.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 3, + 42 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3810.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3810.json" new file mode 100644 index 0000000000000000000000000000000000000000..4a3e3b727543862617e31ce0a8775319e6244656 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3810.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 13, + 72 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3811.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3811.json" new file mode 100644 index 0000000000000000000000000000000000000000..6693492047989b21d174b93477fb9c63817e9ff4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3811.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 5, + 14 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3812.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3812.json" new file mode 100644 index 0000000000000000000000000000000000000000..5851f233a182be0051285998ce1150de22f02395 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3812.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 87, + 53, + 40 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3813.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3813.json" new file mode 100644 index 0000000000000000000000000000000000000000..c10685926758c45e2967ed8b89b4772fbd0e1504 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3813.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 25, + 47 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3814.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3814.json" new file mode 100644 index 0000000000000000000000000000000000000000..df1e6bba84dd4bbf88f40e32316641941c18b2d7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3814.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 37, + 18 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3815.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3815.json" new file mode 100644 index 0000000000000000000000000000000000000000..a9243fb754883121276ce5bc88d6ea6a8aed5094 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3815.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 15, + 25 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3816.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3816.json" new file mode 100644 index 0000000000000000000000000000000000000000..d1d6800ca1379a09e710ea2a56609957edb9c139 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3816.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 12, + 50, + 15 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3817.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3817.json" new file mode 100644 index 0000000000000000000000000000000000000000..d9588d2859db86940d4d586e6d338efa6e621472 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3817.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 65, + 98 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3818.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3818.json" new file mode 100644 index 0000000000000000000000000000000000000000..061150fbeee6caac5093082700ba0502af0628e0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3818.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 83, + 26, + 5 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3819.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3819.json" new file mode 100644 index 0000000000000000000000000000000000000000..255f4e35949c404cc7eee6f7a489496c20a1871e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3819.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 18, + 12 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3820.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3820.json" new file mode 100644 index 0000000000000000000000000000000000000000..a3cdf63bec044def361bf48f8b0ca9de8ff44f3f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3820.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 17, + 56 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3821.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3821.json" new file mode 100644 index 0000000000000000000000000000000000000000..442a7ec0fbd1881e50364410fa6ef097d8ff4387 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3821.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 72, + 33 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3822.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3822.json" new file mode 100644 index 0000000000000000000000000000000000000000..ee34f3bac47e317f3b0816004b3f7d71d64da5aa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3822.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 56, + 2 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3823.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3823.json" new file mode 100644 index 0000000000000000000000000000000000000000..d7638298d23088d999ba258f4727e3959b84c0b9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3823.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 19, + 94, + 32 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3824.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3824.json" new file mode 100644 index 0000000000000000000000000000000000000000..125e99aff9cec347ce65e44099d79f6d00aee3e0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3824.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 94, + 69 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3825.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3825.json" new file mode 100644 index 0000000000000000000000000000000000000000..5995fb731718d02bfa53c4df328a835f53efe6c1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3825.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 87, + 53 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3826.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3826.json" new file mode 100644 index 0000000000000000000000000000000000000000..9c7129027cd26c317cd6a42b96167e984e282954 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3826.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 36, + 78 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3827.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3827.json" new file mode 100644 index 0000000000000000000000000000000000000000..78f96ea25cc0feca43fa36c9b98d4718258dd452 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3827.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 78, + 28 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3828.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3828.json" new file mode 100644 index 0000000000000000000000000000000000000000..f1693d8b3dc047fe9b9e28c401192933c4a294dd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3828.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 40, + 98 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3829.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3829.json" new file mode 100644 index 0000000000000000000000000000000000000000..96bf28bbecdc924660b71b9698ab8e971f314aca --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3829.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 37, + 68 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3830.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3830.json" new file mode 100644 index 0000000000000000000000000000000000000000..1f3ee2b001f07caf2674c1283ea6a69d2a407cea --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3830.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 33, + 5 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3831.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3831.json" new file mode 100644 index 0000000000000000000000000000000000000000..89e82ac3db5a2cc9e108c9d5ed0f8399522e720e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3831.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 52, + 76 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3832.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3832.json" new file mode 100644 index 0000000000000000000000000000000000000000..bcd405b8fec9ed794fb4ec89aa4a709aa5ee8cfa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3832.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 44, + 37 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3833.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3833.json" new file mode 100644 index 0000000000000000000000000000000000000000..c5e50505add418c96f9e6ecdcf0855240521b5c9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3833.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 46, + 28 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3834.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3834.json" new file mode 100644 index 0000000000000000000000000000000000000000..5c65d14b16b1d99eaa8387b1c747c8649fa9e35a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3834.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 57, + 60 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3835.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3835.json" new file mode 100644 index 0000000000000000000000000000000000000000..32c9ccc0790ee716c60b304cb4bc3ce1976a43f4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3835.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 69, + 80 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3836.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3836.json" new file mode 100644 index 0000000000000000000000000000000000000000..e2ff82eb5b63a33fb365f11e7648f0ebb4f4dd52 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3836.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 76, + 5 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3837.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3837.json" new file mode 100644 index 0000000000000000000000000000000000000000..caac82e8f04039b7f9efbc8ced14745f9d04373e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3837.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 2, + 48 + ], + "karaoke_color": [ + 255, + 202, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3838.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3838.json" new file mode 100644 index 0000000000000000000000000000000000000000..d523383dc1690bd45a229473c83032eb7791159a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3838.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 74, + 9 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3839.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3839.json" new file mode 100644 index 0000000000000000000000000000000000000000..763e3b290b8c29273343f76d75de6a3feec4ac95 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3839.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 18, + 96 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3840.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3840.json" new file mode 100644 index 0000000000000000000000000000000000000000..caaf6f01aed2d2c5c57754b5b0b8c998ac02f6b2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3840.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 47, + 56 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3841.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3841.json" new file mode 100644 index 0000000000000000000000000000000000000000..af2800d1af8be32e8b32d661dbe132677f3a18e0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3841.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 99, + 87 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3842.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3842.json" new file mode 100644 index 0000000000000000000000000000000000000000..7a1716ba873def5063089e4a515cb018ed7482a0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3842.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 89, + 18 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3843.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3843.json" new file mode 100644 index 0000000000000000000000000000000000000000..aa98cf86e197c67de29c519aaed0778ed6d6ffc0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3843.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 1, + 64 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3844.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3844.json" new file mode 100644 index 0000000000000000000000000000000000000000..93be933e39a6abc0acf070658975385b3c23490a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3844.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 56, + 87 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3845.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3845.json" new file mode 100644 index 0000000000000000000000000000000000000000..fac322e721023baf7b1ccade7e9945a55c0873c4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3845.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.6", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 7, + 13 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3846.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3846.json" new file mode 100644 index 0000000000000000000000000000000000000000..94190bb5149bd074e0034047388bd51875449e60 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3846.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 39, + 57 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3847.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3847.json" new file mode 100644 index 0000000000000000000000000000000000000000..0a8738b690b586b3cba951b39608ca577dda3947 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3847.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 48, + 42 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3848.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3848.json" new file mode 100644 index 0000000000000000000000000000000000000000..a6749ff498b4f9d5938c3868f4c3bca15a697034 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3848.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Iosevka Charon", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 60, + 84 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3849.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3849.json" new file mode 100644 index 0000000000000000000000000000000000000000..3e628c3d7cd7220ce60c9254d80b6b60e096cce1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3849.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 83, + 91 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3850.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3850.json" new file mode 100644 index 0000000000000000000000000000000000000000..79ea7cd5f6ddda1c8376e5248ea62993b8f7f219 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3850.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 38, + 55 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3851.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3851.json" new file mode 100644 index 0000000000000000000000000000000000000000..95ac83041ecbba051b402b69da6258f7a04071d3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3851.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 64, + 43 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3852.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3852.json" new file mode 100644 index 0000000000000000000000000000000000000000..ce83995fcd97f0bd03c8f1aad5722a20c0406805 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3852.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 68, + 35 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3853.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3853.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f145a6c964bc0dc7f2f1981b6852462ebeef292 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3853.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 26, + 85, + 83 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3854.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3854.json" new file mode 100644 index 0000000000000000000000000000000000000000..f126973ae36d7502a7b135cc48269f795fc09b73 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3854.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 3, + 41 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3855.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3855.json" new file mode 100644 index 0000000000000000000000000000000000000000..21fd8d17b47ceb313050ac7fec40065826c64fdc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3855.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 56, + 39 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3856.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3856.json" new file mode 100644 index 0000000000000000000000000000000000000000..45e21680c0336985abb44709a898f11442a9cff1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3856.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 66, + 27 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3857.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3857.json" new file mode 100644 index 0000000000000000000000000000000000000000..76bf333e67dcd3f9e8450215b70e3a3f0618297e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3857.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 14, + 44 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3858.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3858.json" new file mode 100644 index 0000000000000000000000000000000000000000..6d7daed8c880cd79bd30439c0eeac37564318b97 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3858.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito Sans", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 65, + 47 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3859.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3859.json" new file mode 100644 index 0000000000000000000000000000000000000000..fa997807abdc44636e303011dfd63e6060de9051 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3859.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 10, + 89 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3860.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3860.json" new file mode 100644 index 0000000000000000000000000000000000000000..77dedc1e4c0002bcefc4d6b1795f2abfbf4cc28d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3860.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 1, + 64 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3861.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3861.json" new file mode 100644 index 0000000000000000000000000000000000000000..4de85cdfc98fbb5071ac785ee5820db615f4070c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3861.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 83, + 87 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3862.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3862.json" new file mode 100644 index 0000000000000000000000000000000000000000..cd805a555c1d36547db52e1ed5687f553d72b5cf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3862.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 17, + 47, + 96 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3863.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3863.json" new file mode 100644 index 0000000000000000000000000000000000000000..82c4b68a7fc0ee2b8f344414f496ac6fa2c3ad51 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3863.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 39, + 2, + 70 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3864.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3864.json" new file mode 100644 index 0000000000000000000000000000000000000000..00d1091b14e27ed293ee96111f79f1d3391798bf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3864.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 41, + 83 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3865.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3865.json" new file mode 100644 index 0000000000000000000000000000000000000000..f385e941a71cde273c97c0d78c108bc5353a10a2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3865.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.2", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 38, + 67 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3866.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3866.json" new file mode 100644 index 0000000000000000000000000000000000000000..7f6655d7b1b96def6e96052e7ab6603bbdacbf11 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3866.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 90, + 57 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3867.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3867.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f6625830d0183654a3b33adf22f55eb40bf0965 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3867.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 71, + 77 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3868.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3868.json" new file mode 100644 index 0000000000000000000000000000000000000000..69ccbeff8fbe72efe8e9ace4cd22ded22b81b0a9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3868.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 91, + 19 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3869.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3869.json" new file mode 100644 index 0000000000000000000000000000000000000000..0a34b2e779aae12639caad6fdb15d9593a0473d0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3869.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 19, + 100 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3870.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3870.json" new file mode 100644 index 0000000000000000000000000000000000000000..4e6ef153645dfbc64b720d0b62daba639d0987e6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3870.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 55, + 60, + 7 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3871.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3871.json" new file mode 100644 index 0000000000000000000000000000000000000000..c627cab8f75ee192db7b3d5bda8e45d6bc3e8348 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3871.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 81, + 94 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3872.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3872.json" new file mode 100644 index 0000000000000000000000000000000000000000..e4c3bc347d392d2ca04cfcb7c839eb0805947c22 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3872.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "3.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 29, + 8, + 2 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3873.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3873.json" new file mode 100644 index 0000000000000000000000000000000000000000..a87f964129489772bce2aa8c54b36e66d8dafa7b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3873.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 50, + 49 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3874.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3874.json" new file mode 100644 index 0000000000000000000000000000000000000000..4aee46477e4c6910fcfbe2f4b2642d900d2eeef7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3874.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "3.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 49, + 95 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3875.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3875.json" new file mode 100644 index 0000000000000000000000000000000000000000..9492e7d23e83a4671ae9a2040c4c83b2a204d51b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3875.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 90, + 41 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3876.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3876.json" new file mode 100644 index 0000000000000000000000000000000000000000..c71cdfccaa9c2b5a993c4a425f9596c9c482c3df --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3876.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 61, + 53, + 7 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3877.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3877.json" new file mode 100644 index 0000000000000000000000000000000000000000..088310bf14f7f69e698d1f1ecf568daf98a76125 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3877.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 35, + 30 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3878.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3878.json" new file mode 100644 index 0000000000000000000000000000000000000000..d0c4ce3c6077d1b0a97a8540d3b53658bcc7dd83 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3878.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 53, + 56 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3879.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3879.json" new file mode 100644 index 0000000000000000000000000000000000000000..780e6f3d8abbdd8c1f045ed6c76c7b55c961611d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3879.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.7", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 82, + 57 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3880.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3880.json" new file mode 100644 index 0000000000000000000000000000000000000000..30d23c12d4c5cbf791db4453ad380b3644a1e137 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3880.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 34, + 31 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3881.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3881.json" new file mode 100644 index 0000000000000000000000000000000000000000..7e19b19ec29e95c84a4ad095e0734166c353e48b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3881.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 60, + 71 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3882.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3882.json" new file mode 100644 index 0000000000000000000000000000000000000000..637fdf5c4297e9e2d8b79a2cc53a9d0b7ebbb089 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3882.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 19, + 59 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3883.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3883.json" new file mode 100644 index 0000000000000000000000000000000000000000..9b87fde7d907e5cb140a0124348e76416fd9f6ce --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3883.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.6", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 63, + 48 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3884.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3884.json" new file mode 100644 index 0000000000000000000000000000000000000000..819635c4161d39741a76a552bd3b02974098c824 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3884.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.0", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 23, + 97 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3885.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3885.json" new file mode 100644 index 0000000000000000000000000000000000000000..5602274611f90dde6dad8f263ab1d4bca996f46c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3885.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 3, + 55, + 30 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3886.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3886.json" new file mode 100644 index 0000000000000000000000000000000000000000..3a26b88149ed10158336668397d780961c27b92b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3886.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 58, + 56 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3887.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3887.json" new file mode 100644 index 0000000000000000000000000000000000000000..01cf2b0d47f5cc990ba67426957e4a06661e4bef --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3887.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 88, + 81 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3888.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3888.json" new file mode 100644 index 0000000000000000000000000000000000000000..b57c5af4f40a5d24f8117c9c7de4ad3175e4b29d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3888.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.9", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 37, + 60 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3889.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3889.json" new file mode 100644 index 0000000000000000000000000000000000000000..6b5285c9c04aeeed5c4ade3e82b2ba8c328533a2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3889.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.1", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 98, + 1 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3890.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3890.json" new file mode 100644 index 0000000000000000000000000000000000000000..6539284831c44f7a4627b13faf76712650174b50 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3890.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.1", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 77, + 28 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3891.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3891.json" new file mode 100644 index 0000000000000000000000000000000000000000..27e4c3af42f8faf1331d366a2d17e9b40f418d77 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3891.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 89, + 72 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3892.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3892.json" new file mode 100644 index 0000000000000000000000000000000000000000..aefb7d4455a9306a0c9590e53bb9958f6b2e02f8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3892.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 15, + 37 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3893.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3893.json" new file mode 100644 index 0000000000000000000000000000000000000000..a1a1167d589dd76a18ff859866c892a22501a0a1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3893.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 19, + 58 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3894.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3894.json" new file mode 100644 index 0000000000000000000000000000000000000000..bbebf5d4d59dc4b4975899f067aec6b7437b5758 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3894.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.7", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 93, + 87, + 30 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3895.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3895.json" new file mode 100644 index 0000000000000000000000000000000000000000..fad52cc4158ce811e7e18fd00b910b7aed27aa53 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3895.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 65, + 21 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3896.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3896.json" new file mode 100644 index 0000000000000000000000000000000000000000..a8e279d7b8a43e5cc3661fb3ecbcd2f3af05d2c0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3896.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 33, + 18 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3897.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3897.json" new file mode 100644 index 0000000000000000000000000000000000000000..5779bc1fd1d56dd388d3757f8e411894e91626e1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3897.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 7, + 15 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3898.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3898.json" new file mode 100644 index 0000000000000000000000000000000000000000..13ba77d8fe8e9e0371d23bfb4cecb51ccd910363 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3898.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.8", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 93, + 52 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3899.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3899.json" new file mode 100644 index 0000000000000000000000000000000000000000..6329ebb6ea7264eda29dfba38dc953c0348b7e94 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3899.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.4", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 23, + 18 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3900.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3900.json" new file mode 100644 index 0000000000000000000000000000000000000000..394f220853fa065012d97216c4797c967e8727e7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3900.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 29, + 31 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3901.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3901.json" new file mode 100644 index 0000000000000000000000000000000000000000..eda2ba60273b8517a05f50a607412801d2f8cee9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3901.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 29, + 86 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3902.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3902.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac9c9a4af830ee820ffbc2e56e468df868a1e80b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3902.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 79, + 32 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3903.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3903.json" new file mode 100644 index 0000000000000000000000000000000000000000..a0f4170f992c96f1546b34b07fb1b758722344a5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3903.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 85, + 87 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3904.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3904.json" new file mode 100644 index 0000000000000000000000000000000000000000..fef6a653131373bbb6083ea6e7e5a56d0575bb59 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3904.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 84, + 46 + ], + "karaoke_color": [ + 255, + 238, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3905.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3905.json" new file mode 100644 index 0000000000000000000000000000000000000000..81bb42664a13230553bf1969fc0c7442a49f6310 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3905.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 76, + 30 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3906.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3906.json" new file mode 100644 index 0000000000000000000000000000000000000000..84a1d10c10bea1e75233ed54678ac57bf6d74eb7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3906.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 27, + 62, + 80 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3907.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3907.json" new file mode 100644 index 0000000000000000000000000000000000000000..9c2cc842f74fe98b546962749dde51dad07dac43 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3907.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.3", + "shadow": "2.7", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 67, + 44 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3908.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3908.json" new file mode 100644 index 0000000000000000000000000000000000000000..9b5075e931f2b07e4aa6fb13b77f131fb9fa024c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3908.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 89, + 18 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3909.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3909.json" new file mode 100644 index 0000000000000000000000000000000000000000..8459a1aef1ed8262dfd2afa751582e16862422e1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3909.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 87, + 96 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3910.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3910.json" new file mode 100644 index 0000000000000000000000000000000000000000..3842615d5f86e3772b47b60e01593fa2eeded70a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3910.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 9, + 76 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3911.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3911.json" new file mode 100644 index 0000000000000000000000000000000000000000..02339ded13eb6a4f68af0abd67760cedc3fd4637 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3911.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 25, + 89, + 67 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3912.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3912.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f439937a05398ce3fbb0926bb8a28dafe7bc34e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3912.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 30, + 11 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3913.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3913.json" new file mode 100644 index 0000000000000000000000000000000000000000..b2b980bb185e0612258db95bdacc436b967b00d9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3913.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 21, + 90 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3914.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3914.json" new file mode 100644 index 0000000000000000000000000000000000000000..af7e834988326e9b5c198f487fe9f9b28182f452 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3914.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 98, + 90 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3915.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3915.json" new file mode 100644 index 0000000000000000000000000000000000000000..1d336e7a8455d7326395d5e07bafeb85fcdcf647 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3915.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 18, + 41 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3916.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3916.json" new file mode 100644 index 0000000000000000000000000000000000000000..49fa111b6efb830c5ca90a44d0f56f8b59a3dc05 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3916.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.5", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 5, + 43 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3917.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3917.json" new file mode 100644 index 0000000000000000000000000000000000000000..1620d3b81efd287455d684690e28d1415f0879e9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3917.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 54, + 56 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3918.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3918.json" new file mode 100644 index 0000000000000000000000000000000000000000..5bcc58badaf4314fd2158bea51e5ff41724976a8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3918.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 42, + 96 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3919.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3919.json" new file mode 100644 index 0000000000000000000000000000000000000000..b1afd4ace0afcf330652051f6fb71cdf98b8a235 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3919.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 14, + 4 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3920.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3920.json" new file mode 100644 index 0000000000000000000000000000000000000000..254aaae814eb89a7587d56cc4e681f3cccece4e6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3920.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 21, + 12, + 61 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3921.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3921.json" new file mode 100644 index 0000000000000000000000000000000000000000..2c0c0a4bcf568becbf3b469291b0c62afbb14842 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3921.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 2, + 28 + ], + "karaoke_color": [ + 255, + 206, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3922.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3922.json" new file mode 100644 index 0000000000000000000000000000000000000000..2c32a2eaaabafcf166f7bcc21fa65a3c0e690955 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3922.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.4", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 86, + 55, + 36 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3923.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3923.json" new file mode 100644 index 0000000000000000000000000000000000000000..ee8e2feb1ceabf2690659d4fef87d35eb881a630 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3923.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 32, + 49, + 6 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3924.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3924.json" new file mode 100644 index 0000000000000000000000000000000000000000..95721c8c7c14bdc4281087c6e51a35eed5542a17 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3924.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.8", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 76, + 50 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3925.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3925.json" new file mode 100644 index 0000000000000000000000000000000000000000..da1bd2daea171a344152897187748b11989e29ea --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3925.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 91, + 72 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3926.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3926.json" new file mode 100644 index 0000000000000000000000000000000000000000..561a982aac69a06a03fdef2a31bc855ca73eeea5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3926.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 23, + 43 + ], + "karaoke_color": [ + 255, + 216, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3927.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3927.json" new file mode 100644 index 0000000000000000000000000000000000000000..7b420de6bed4330b70268f696eaf20b5d7db8062 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3927.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 95, + 31 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3928.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3928.json" new file mode 100644 index 0000000000000000000000000000000000000000..169682a7afb0202f9b18686c78c51078851e1af2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3928.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 83, + 14 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3929.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3929.json" new file mode 100644 index 0000000000000000000000000000000000000000..4fbaa7dfd0c83cb97d0f38d95b159a892d2e9629 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3929.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 30, + 87 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3930.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3930.json" new file mode 100644 index 0000000000000000000000000000000000000000..67568eada7fb072f1dc6e4db66433e07379c5f3b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3930.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.5", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 73, + 64 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3931.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3931.json" new file mode 100644 index 0000000000000000000000000000000000000000..884966d277c5c7f529164383f699acac797e072e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3931.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 53, + 67 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3932.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3932.json" new file mode 100644 index 0000000000000000000000000000000000000000..8ceea6cdfeed3fef8a53a5b4e558b6694cae612e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3932.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.5", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 34, + 30, + 96 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3933.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3933.json" new file mode 100644 index 0000000000000000000000000000000000000000..81c7034d837c0ab29ae574bc08f9a2e5637fd9f5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3933.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.9", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 29, + 5 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3934.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3934.json" new file mode 100644 index 0000000000000000000000000000000000000000..eb9c9941dec8e223e899c96a9662c562df6ed92a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3934.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 16, + 52 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3935.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3935.json" new file mode 100644 index 0000000000000000000000000000000000000000..b35eface332523c3d08e5749230a2f7e6bfb7f1a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3935.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 16, + 19 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3936.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3936.json" new file mode 100644 index 0000000000000000000000000000000000000000..9eab1c3664e4675bc6730350c9a3ca3193afda1d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3936.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 59, + 87 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3937.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3937.json" new file mode 100644 index 0000000000000000000000000000000000000000..1a02f09540d7a974da4ac3dea91f48d9bbbd9964 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3937.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 90, + 11 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3938.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3938.json" new file mode 100644 index 0000000000000000000000000000000000000000..5f3f1540ab0d542f56205c1fdb1411b2df73b679 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3938.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.8", + "shadow": "2.4", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 23, + 75, + 24 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3939.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3939.json" new file mode 100644 index 0000000000000000000000000000000000000000..50b82889cb0a9c99e7b7e0e6b4cf862de69ebe57 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3939.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 57, + 1, + 91 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3940.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3940.json" new file mode 100644 index 0000000000000000000000000000000000000000..0d44e2d91d3b36090fbc2da53db1e96667b2e001 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3940.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 17, + 91 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3941.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3941.json" new file mode 100644 index 0000000000000000000000000000000000000000..c30db8ad65c349799cfb53cc6e34e3802ea9f3c4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3941.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 85, + 81 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3942.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3942.json" new file mode 100644 index 0000000000000000000000000000000000000000..9b0f3f6b3ab478e5419916f72a93adb2cb6163a7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3942.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 93, + 73 + ], + "karaoke_color": [ + 255, + 221, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3943.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3943.json" new file mode 100644 index 0000000000000000000000000000000000000000..e265208011f80852c8c2cd1ad289f859e9e60668 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3943.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 4, + 60, + 52 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3944.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3944.json" new file mode 100644 index 0000000000000000000000000000000000000000..80845c92742eb57e1892de80bfb520800b39ed93 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3944.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 66, + 38 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3945.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3945.json" new file mode 100644 index 0000000000000000000000000000000000000000..e4cb24f91ea5a70fe52a0f98202384c15e105ca2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3945.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 18pt", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.6", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 73, + 95 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3946.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3946.json" new file mode 100644 index 0000000000000000000000000000000000000000..a3d48ca3c3285a485f94158f4b6bc18ee58c49c7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3946.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 63, + 38 + ], + "karaoke_color": [ + 255, + 205, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3947.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3947.json" new file mode 100644 index 0000000000000000000000000000000000000000..df147886ea5fb99c30582ea71fc4b93a164070af --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3947.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.5", + "shadow": "2.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 79, + 49 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3948.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3948.json" new file mode 100644 index 0000000000000000000000000000000000000000..849dca9c569194a674cdfcb6bde606fdd594ff42 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3948.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 86, + 7 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3949.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3949.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f337136c1f27340cd8ad3b906e04632e7b6911a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3949.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype ExtraExpanded", + "fontsize": "40", + "outline": "2.7", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 5, + 7 + ], + "karaoke_color": [ + 255, + 201, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3950.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3950.json" new file mode 100644 index 0000000000000000000000000000000000000000..a8fb24732189db05ae4667d6ad467d7d04496b0d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3950.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.3", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 84, + 52 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3951.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3951.json" new file mode 100644 index 0000000000000000000000000000000000000000..9685a9e9f4916178352a03cabe426b9741a45d35 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3951.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 50, + 57, + 78 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3952.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3952.json" new file mode 100644 index 0000000000000000000000000000000000000000..0f8d3924f0ee0abc63094d2d964feaab5fce7070 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3952.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 74, + 49 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3953.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3953.json" new file mode 100644 index 0000000000000000000000000000000000000000..97ef0cd062f31575341dbe96c3a74a7c4c01ab71 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3953.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 69, + 23 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3954.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3954.json" new file mode 100644 index 0000000000000000000000000000000000000000..3d67c8f9ab0f423fc73f78ecaae24e4ca4799f71 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3954.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "3.8", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 74, + 9 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3955.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3955.json" new file mode 100644 index 0000000000000000000000000000000000000000..5539ae38646146d5e0412db03f7bab1dc0058a8b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3955.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 56, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 99, + 28, + 7 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3956.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3956.json" new file mode 100644 index 0000000000000000000000000000000000000000..4bd888e83350b9fec48ad6569661367b9f09e578 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3956.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 92, + 69 + ], + "karaoke_color": [ + 255, + 239, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3957.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3957.json" new file mode 100644 index 0000000000000000000000000000000000000000..537eafd780c7355507f2c1a567829cd6c9223941 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3957.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 37, + 4 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3958.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3958.json" new file mode 100644 index 0000000000000000000000000000000000000000..24a2a1dc6646c5fa7e6f91642cd88784037d0fac --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3958.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.9", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 94, + 2, + 53 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3959.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3959.json" new file mode 100644 index 0000000000000000000000000000000000000000..0e1d7a1631fefcdd2a06ab47cf1095e3685ee80a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3959.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 42, + 26 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3960.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3960.json" new file mode 100644 index 0000000000000000000000000000000000000000..ddef6f5beaa970b0b3b87a5f69e58cfe37cb432e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3960.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "4.0", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 50, + 56 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3961.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3961.json" new file mode 100644 index 0000000000000000000000000000000000000000..01c084462c4353d608a7b9bec7c566d4a816624c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3961.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 34, + 55 + ], + "karaoke_color": [ + 255, + 244, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3962.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3962.json" new file mode 100644 index 0000000000000000000000000000000000000000..6f7fa699bf0c505b3f72bd65a120db7364e9f5d4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3962.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 35, + 19, + 24 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3963.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3963.json" new file mode 100644 index 0000000000000000000000000000000000000000..ff4a2ff77887687e38c15ce829886994552684cf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3963.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 61, + 60 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3964.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3964.json" new file mode 100644 index 0000000000000000000000000000000000000000..a955d92bec5a9928c94e547038c9fc032675f163 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3964.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 90, + 6 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3965.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3965.json" new file mode 100644 index 0000000000000000000000000000000000000000..5b59a3c54c5388b6f5ccb14de11dd9e66d5d1bd1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3965.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 9pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 75, + 19 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3966.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3966.json" new file mode 100644 index 0000000000000000000000000000000000000000..581c338d8cdf35b749c087bcd25b8bfd63178c7c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3966.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans SemiCondensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 56, + 72 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3967.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3967.json" new file mode 100644 index 0000000000000000000000000000000000000000..e001b17f869f32bef25d3ebc157ed3192456a2d1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3967.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiExpanded", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 37, + 9 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3968.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3968.json" new file mode 100644 index 0000000000000000000000000000000000000000..46c694d365265e4646e6cd52274a16445e537e05 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3968.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.4", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 71, + 61, + 56 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3969.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3969.json" new file mode 100644 index 0000000000000000000000000000000000000000..947c742889e843716b32b651f74dc8f3c53548f0 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3969.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.4", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 28, + 32, + 19 + ], + "karaoke_color": [ + 255, + 217, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3970.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3970.json" new file mode 100644 index 0000000000000000000000000000000000000000..3fd06ebae533cd74124ebdb711270865ea85bdfb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3970.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.0", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 30, + 91 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3971.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3971.json" new file mode 100644 index 0000000000000000000000000000000000000000..6318e6f9910ba22e03f719d7995b4d0b9073c9fd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3971.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.3", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 15, + 78 + ], + "karaoke_color": [ + 255, + 204, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3972.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3972.json" new file mode 100644 index 0000000000000000000000000000000000000000..1492a03d2274b3e77ad7ca8f34723f98b6dcdf53 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3972.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Oswald", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 37, + 70 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3973.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3973.json" new file mode 100644 index 0000000000000000000000000000000000000000..46d909064758afd6a1eb4c1736ca2c9c311fa0c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3973.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 33, + 39 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3974.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3974.json" new file mode 100644 index 0000000000000000000000000000000000000000..ad47010eab761814b2d9929109b34d2ee952dace --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3974.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 3, + 64 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3975.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3975.json" new file mode 100644 index 0000000000000000000000000000000000000000..e1b3c5c30d80bb1d712dee34c98bf00903288457 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3975.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 49, + 0, + 65 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3976.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3976.json" new file mode 100644 index 0000000000000000000000000000000000000000..ba14b8be926240471dae015c20fd7f78811ff609 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3976.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 56, + 42 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3977.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3977.json" new file mode 100644 index 0000000000000000000000000000000000000000..3368f7fed7c82863505272b1c8c58a491a532ed6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3977.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 65, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 57, + 24 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3978.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3978.json" new file mode 100644 index 0000000000000000000000000000000000000000..53364d34257cb22dd1fbb5d053e96c26ba78d34f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3978.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.1", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 26, + 98 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3979.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3979.json" new file mode 100644 index 0000000000000000000000000000000000000000..d4378987304ef649b94de1d28c6f646ed8f22941 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3979.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Arimo", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.4", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 5, + 93, + 28 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3980.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3980.json" new file mode 100644 index 0000000000000000000000000000000000000000..78cee6514327810cc504d9d8da41f10014185dd4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3980.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Mono", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 1, + 31 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3981.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3981.json" new file mode 100644 index 0000000000000000000000000000000000000000..bcc2a1cb7b66365cfa005835d37aac3328b75ede --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3981.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.5", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 10, + 75 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3982.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3982.json" new file mode 100644 index 0000000000000000000000000000000000000000..f6c201e8689766c519505081cf570c4b8a2aa423 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3982.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 13, + 27, + 59 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3983.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3983.json" new file mode 100644 index 0000000000000000000000000000000000000000..bc371c8b5cfac7c334c3f1600cc1056d71676dc7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3983.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 44, + 59 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3984.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3984.json" new file mode 100644 index 0000000000000000000000000000000000000000..70a622422e5116c400821ebf6bdfa8f5d49826b9 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3984.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.6", + "shadow": "1.0", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 10, + 19 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3985.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3985.json" new file mode 100644 index 0000000000000000000000000000000000000000..e43f32bf880016fea6e0f4bac895f37a52131e18 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3985.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.8", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 60, + 85 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3986.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3986.json" new file mode 100644 index 0000000000000000000000000000000000000000..524cdc8d7ba98a4cc0809bfd7831a7ab97f4d966 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3986.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 84, + 73, + 92 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3987.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3987.json" new file mode 100644 index 0000000000000000000000000000000000000000..44a543a31c80080b052338532f389f2920e1580b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3987.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.1", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 60, + 85 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3988.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3988.json" new file mode 100644 index 0000000000000000000000000000000000000000..c4560450d5f90bb621cedbb35bb9084f63cebb94 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3988.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.3", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 44, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 2, + 63 + ], + "karaoke_color": [ + 255, + 218, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3989.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3989.json" new file mode 100644 index 0000000000000000000000000000000000000000..55641950568c7df36a1aeb2331d243dfd2bdb898 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3989.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 43, + 38 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3990.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3990.json" new file mode 100644 index 0000000000000000000000000000000000000000..b2f532bb5fb30857e3797bb87eb9a05f93e6b996 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3990.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito Sans", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 10, + 50 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3991.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3991.json" new file mode 100644 index 0000000000000000000000000000000000000000..7b41fee4fab2b6a2d7870f46291a6710547f61e4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3991.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.1", + "shadow": "2.4", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 60, + 42 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3992.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3992.json" new file mode 100644 index 0000000000000000000000000000000000000000..54f35c52fb99d30422ec8b1fd89e39bc3a46c0d4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3992.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 43, + 29, + 21 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3993.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3993.json" new file mode 100644 index 0000000000000000000000000000000000000000..896fbb1d863e0627a2d2ca1d7463702628560a06 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3993.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 8, + 19 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3994.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3994.json" new file mode 100644 index 0000000000000000000000000000000000000000..afe93aff41ffb3ebe2dfa4b9f7903815d034f2e2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3994.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "2.3", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 60, + 92, + 26 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3995.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3995.json" new file mode 100644 index 0000000000000000000000000000000000000000..d28f033f80c030087d50d17d4c4411801672281a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3995.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.5", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 58, + 8, + 80 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3996.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3996.json" new file mode 100644 index 0000000000000000000000000000000000000000..7af8af3c784b6d3ac9c90bf33e30ba2d9dd13c1a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3996.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 25, + 36 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3997.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3997.json" new file mode 100644 index 0000000000000000000000000000000000000000..87d46bb2ff7fb109c49cb80ba4757cd2a4007f32 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3997.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.2", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 94, + 96 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3998.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3998.json" new file mode 100644 index 0000000000000000000000000000000000000000..af27902e762c8040551a252e632708609b5c8cc4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3998.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.0", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 62, + 62 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3999.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3999.json" new file mode 100644 index 0000000000000000000000000000000000000000..8d0d0b432f1be992b589eb89514ff736e8daa335 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_3999.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 53, + 5 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4000.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4000.json" new file mode 100644 index 0000000000000000000000000000000000000000..6de831c935e9228ef6d1357b381feadd4d1044ff --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4000.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.9", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 47, + 23, + 71 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4001.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4001.json" new file mode 100644 index 0000000000000000000000000000000000000000..13875c182c6736fb0f08aa136084e591b7b14098 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4001.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.7", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 10, + 57, + 50 + ], + "karaoke_color": [ + 255, + 226, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4002.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4002.json" new file mode 100644 index 0000000000000000000000000000000000000000..d66af394211a53285ec7f26f3311d6b8c73a8593 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4002.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.3", + "shadow": "2.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 79, + 8, + 44 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4003.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4003.json" new file mode 100644 index 0000000000000000000000000000000000000000..3a4bee4fc42b32333494b0ff4a6a89780981d8be --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4003.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "1.0", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 62, + 28 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4004.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4004.json" new file mode 100644 index 0000000000000000000000000000000000000000..21917e219ffc2d257049c9704bbc72997c023aee --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4004.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "4.0", + "shadow": "1.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 46, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 96, + 33, + 34 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4005.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4005.json" new file mode 100644 index 0000000000000000000000000000000000000000..4f77e1942e626296c0755aecbd361383c7b6b5bf --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4005.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 72pt", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.3", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 53, + 94, + 39 + ], + "karaoke_color": [ + 255, + 241, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4006.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4006.json" new file mode 100644 index 0000000000000000000000000000000000000000..c914e9c0f762c061441b926457f0bf3a08520de6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4006.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.3", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 9, + 87, + 56 + ], + "karaoke_color": [ + 255, + 248, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4007.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4007.json" new file mode 100644 index 0000000000000000000000000000000000000000..e964f183bbde19b18f9ea06a08aa90799dd8a895 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4007.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.6", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 42, + 75 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4008.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4008.json" new file mode 100644 index 0000000000000000000000000000000000000000..3fc20e638e18360bc395a322703ce72f3e2ba570 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4008.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 23, + 42 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4009.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4009.json" new file mode 100644 index 0000000000000000000000000000000000000000..ee6d4e9efba59685c3551d6e304e5f57978b3deb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4009.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.2", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 42, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 39, + 85 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4010.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4010.json" new file mode 100644 index 0000000000000000000000000000000000000000..5fff807baa487c4ea97a111fef5d7b0c11deaaf1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4010.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.5", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 31, + 11 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4011.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4011.json" new file mode 100644 index 0000000000000000000000000000000000000000..bfed368f46112de4835a562ddc5706b92dffa8a5 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4011.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.5", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 97, + 65, + 4 + ], + "karaoke_color": [ + 255, + 245, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4012.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4012.json" new file mode 100644 index 0000000000000000000000000000000000000000..ee97ace0472f791facf6fd829b1e49455cfaaec1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4012.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.6", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 45, + 25, + 85 + ], + "karaoke_color": [ + 255, + 212, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4013.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4013.json" new file mode 100644 index 0000000000000000000000000000000000000000..564be9cc6f69fc83dbd0db91fdd77e06d2f3cd17 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4013.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.3", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 64, + 28, + 91 + ], + "karaoke_color": [ + 255, + 210, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4014.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4014.json" new file mode 100644 index 0000000000000000000000000000000000000000..f52f5bd4b37a459857178545f193d6e5facf98da --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4014.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 11, + 100, + 84 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4015.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4015.json" new file mode 100644 index 0000000000000000000000000000000000000000..03c86120db8746a46d838788feba8b96880c2c57 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4015.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.7", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 36, + 9, + 22 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4016.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4016.json" new file mode 100644 index 0000000000000000000000000000000000000000..f480cd18cc8439ad7a5b1be19dfdcd0150b35446 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4016.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.3", + "shadow": "3.0", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 69, + 72, + 54 + ], + "karaoke_color": [ + 255, + 207, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4017.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4017.json" new file mode 100644 index 0000000000000000000000000000000000000000..aa8dc0538eeac93f2aa19a83307b19832e9865ce --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4017.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Expanded", + "fontsize": "40", + "outline": "3.9", + "shadow": "1.1", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 6, + 85, + 90 + ], + "karaoke_color": [ + 255, + 211, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4018.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4018.json" new file mode 100644 index 0000000000000000000000000000000000000000..c7bb87396fd8592c5da3dbdbc69868a2537dc6f2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4018.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.7", + "shadow": "2.7", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 53, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 22, + 22, + 96 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4019.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4019.json" new file mode 100644 index 0000000000000000000000000000000000000000..53d88ba1b5d050c9e2c4f2d7da5b1abe9f5d7fa1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4019.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Rubik", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 91, + 86, + 60 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4020.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4020.json" new file mode 100644 index 0000000000000000000000000000000000000000..9ae557ff47abef67302390bafa4d43e6481b8bab --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4020.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "1.4", + "shadow": "1.9", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 88, + 54, + 51 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4021.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4021.json" new file mode 100644 index 0000000000000000000000000000000000000000..7944900c90e45724ba8922079e2ecde3c726a572 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4021.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.5", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 3, + 62 + ], + "karaoke_color": [ + 255, + 242, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4022.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4022.json" new file mode 100644 index 0000000000000000000000000000000000000000..33c9d8d149a12cac446acbd17e8dafb8c1a93c9a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4022.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 40, + 39, + 90 + ], + "karaoke_color": [ + 255, + 254, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4023.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4023.json" new file mode 100644 index 0000000000000000000000000000000000000000..77f70ca7979f176f39c57dddb7ae82c9ef6db483 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4023.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "3.1", + "shadow": "2.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 55, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 16, + 87 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4024.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4024.json" new file mode 100644 index 0000000000000000000000000000000000000000..4af36ad7d2f693fdccbc7b01a7758cbd614fa944 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4024.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.0", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 71, + 39 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4025.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4025.json" new file mode 100644 index 0000000000000000000000000000000000000000..86dd0941f4adf52dfcde6924f4c33fe715d351cb --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4025.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.6", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 92, + 85, + 42 + ], + "karaoke_color": [ + 255, + 215, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4026.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4026.json" new file mode 100644 index 0000000000000000000000000000000000000000..b69be73d87c06551937032d670b160609e59a28e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4026.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Montserrat", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.4", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 59, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 33, + 42, + 4 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4027.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4027.json" new file mode 100644 index 0000000000000000000000000000000000000000..b6edda0de70b676730ed9910d12cbd34644adb1a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4027.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 35, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 73, + 51, + 63 + ], + "karaoke_color": [ + 255, + 214, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4028.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4028.json" new file mode 100644 index 0000000000000000000000000000000000000000..1373ba7d352b62804a7f7ac20e0e8174b2e394c2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4028.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 51, + 30, + 82 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4029.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4029.json" new file mode 100644 index 0000000000000000000000000000000000000000..906ddf21967e6f6ca6479711688a70309601c783 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4029.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.2", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 43, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 89, + 26, + 100 + ], + "karaoke_color": [ + 255, + 232, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4030.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4030.json" new file mode 100644 index 0000000000000000000000000000000000000000..704c6836d97b09b8af4cd0f2125270724ebe603b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4030.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 33, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 86, + 80 + ], + "karaoke_color": [ + 255, + 219, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4031.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4031.json" new file mode 100644 index 0000000000000000000000000000000000000000..057d330eb05982404a563e17c87bd5e53b44f592 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4031.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.1", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 67, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 1, + 58, + 6 + ], + "karaoke_color": [ + 255, + 237, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4032.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4032.json" new file mode 100644 index 0000000000000000000000000000000000000000..c04008078053889bd00fcf7323aba5ce6552dadd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4032.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Raleway", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 31, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 82, + 71, + 3 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4033.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4033.json" new file mode 100644 index 0000000000000000000000000000000000000000..d382c31d0355ae814c400047d93f6b8aef0b493c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4033.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.6", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 61, + 67 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4034.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4034.json" new file mode 100644 index 0000000000000000000000000000000000000000..a17780dfbec61c9c600f84c6c27789cb79ea7baa --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4034.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito Sans", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 20, + 15, + 44 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4035.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4035.json" new file mode 100644 index 0000000000000000000000000000000000000000..124b8a57040b026f4cef2767d58fd30fa4673ce3 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4035.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "3.2", + "shadow": "1.5", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 24, + 87 + ], + "karaoke_color": [ + 255, + 229, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4036.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4036.json" new file mode 100644 index 0000000000000000000000000000000000000000..04593364621bbb6bf9708b31fee496aa648b786a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4036.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.2", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 100, + 82, + 59 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4037.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4037.json" new file mode 100644 index 0000000000000000000000000000000000000000..28ec1188db85a324a3c949ae388c9647c15b01c8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4037.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "2.0", + "shadow": "2.1", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 41, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 16, + 93, + 61 + ], + "karaoke_color": [ + 255, + 203, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4038.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4038.json" new file mode 100644 index 0000000000000000000000000000000000000000..f04d2cbd95f68f40836a48cf732fab20b84a4a48 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4038.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "1.2", + "shadow": "1.2", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 91, + 33 + ], + "karaoke_color": [ + 255, + 247, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4039.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4039.json" new file mode 100644 index 0000000000000000000000000000000000000000..ecb5b5544c503a5f9d0d959ae4d326e9f077646d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4039.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 60, + 37 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4040.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4040.json" new file mode 100644 index 0000000000000000000000000000000000000000..2b4d9740dc2f79adae4e96b8f4f7d17c54461f8d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4040.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "1.9", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 57, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 45, + 3 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4041.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4041.json" new file mode 100644 index 0000000000000000000000000000000000000000..1071de52c1c9550b4964bb2aae0c64a185015677 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4041.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 28pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 31, + 59, + 86 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4042.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4042.json" new file mode 100644 index 0000000000000000000000000000000000000000..e8d8daed6e6403b5608d4fd9c8ee2ce28b63e539 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4042.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.1", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 76, + 5, + 93 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4043.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4043.json" new file mode 100644 index 0000000000000000000000000000000000000000..99c39da0505f06a8a7d0542c5f64d2cb7785025c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4043.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans SemiCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.6", + "bold": true, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 10, + 71 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4044.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4044.json" new file mode 100644 index 0000000000000000000000000000000000000000..392e0a36d2c07907468057f8568767f090c10872 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4044.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.6", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 38, + 65, + 13 + ], + "karaoke_color": [ + 255, + 252, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4045.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4045.json" new file mode 100644 index 0000000000000000000000000000000000000000..2f654b2b33f8dd5a9ea65eb4f209614747595ae8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4045.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Lato", + "fontsize": "40", + "outline": "2.2", + "shadow": "2.4", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 90, + 70, + 6 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4046.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4046.json" new file mode 100644 index 0000000000000000000000000000000000000000..2697b1bd455fff572cd5ddf5ac25121c18e63e80 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4046.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.7", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 45, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 56, + 81, + 12 + ], + "karaoke_color": [ + 255, + 230, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4047.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4047.json" new file mode 100644 index 0000000000000000000000000000000000000000..dcc30e1ca68ae02815dd6178dde90496df4a151f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4047.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Nunito", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.9", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 64, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 65, + 32, + 11 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4048.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4048.json" new file mode 100644 index 0000000000000000000000000000000000000000..dc84bf887655e59677c4e62d12dfd0125e7880b8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4048.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans 17pt", + "fontsize": "40", + "outline": "3.7", + "shadow": "1.3", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 70, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 85, + 45, + 37 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4049.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4049.json" new file mode 100644 index 0000000000000000000000000000000000000000..76dcece4d2f15b624213927262440e4b79fc241e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4049.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype Condensed", + "fontsize": "40", + "outline": "2.3", + "shadow": "2.5", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 60, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 48, + 8, + 28 + ], + "karaoke_color": [ + 255, + 228, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4050.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4050.json" new file mode 100644 index 0000000000000000000000000000000000000000..953004cf62bf8a46d865928f8f3f93f9bc95c9ec --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4050.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Datatype UltraCondensed", + "fontsize": "40", + "outline": "3.3", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 7, + 70, + 12 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4051.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4051.json" new file mode 100644 index 0000000000000000000000000000000000000000..5cd3cb2f4e95b58503af18eeed3b9319e5e75de4 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4051.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans", + "fontsize": "40", + "outline": "2.6", + "shadow": "2.6", + "bold": false, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 36, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 46, + 86, + 15 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4052.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4052.json" new file mode 100644 index 0000000000000000000000000000000000000000..802c808f1fbec5237ee24ff6c31388214dba345e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4052.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "1.1", + "shadow": "2.1", + "bold": false, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 80, + 64, + 88 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4053.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4053.json" new file mode 100644 index 0000000000000000000000000000000000000000..e9f7785674b3154bc6b286c2c8cf3539f1e4352a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4053.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.6", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 8, + 11, + 44 + ], + "karaoke_color": [ + 255, + 213, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4054.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4054.json" new file mode 100644 index 0000000000000000000000000000000000000000..257f14357ae79f033b490c28b004b73bbbb37164 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4054.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.9", + "shadow": "1.0", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 44, + 32, + 67 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4055.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4055.json" new file mode 100644 index 0000000000000000000000000000000000000000..3e0614977751da110498d44d6e48fb524980015d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4055.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.5", + "shadow": "1.3", + "bold": true, + "alignment": 3, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 51, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 68, + 96, + 94 + ], + "karaoke_color": [ + 255, + 224, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4056.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4056.json" new file mode 100644 index 0000000000000000000000000000000000000000..b56fd3907c2bb0981f0e16fb9e78b86390eaaa5c --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4056.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "3.5", + "shadow": "2.8", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 63, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 59, + 64, + 44 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4057.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4057.json" new file mode 100644 index 0000000000000000000000000000000000000000..a2da410c7edba16614e49f6ed25a7c6dfa92c19b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4057.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.2", + "shadow": "2.2", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 9, + 42 + ], + "karaoke_color": [ + 255, + 235, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4058.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4058.json" new file mode 100644 index 0000000000000000000000000000000000000000..02e54199b0ef3ae414f9ed2e077ea27f78973b6b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4058.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 24pt", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.0", + "bold": false, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 2, + 40, + 91 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4059.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4059.json" new file mode 100644 index 0000000000000000000000000000000000000000..786a01ad91fc1503be7920c74b3f13a1cff05411 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4059.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.2", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 41, + 91, + 84 + ], + "karaoke_color": [ + 255, + 208, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4060.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4060.json" new file mode 100644 index 0000000000000000000000000000000000000000..3b003f9f49a49aa038cc7d4f52c887ad248b83c6 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4060.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "1.8", + "shadow": "2.8", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 40, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 14, + 82, + 98 + ], + "karaoke_color": [ + 255, + 223, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4061.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4061.json" new file mode 100644 index 0000000000000000000000000000000000000000..d06c2f07c1c4a2256b94eeca47be4699c2a438e8 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4061.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 18pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": true, + "box_transparency": 48, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 72, + 89, + 100 + ], + "karaoke_color": [ + 255, + 243, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4062.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4062.json" new file mode 100644 index 0000000000000000000000000000000000000000..5911b65577bd866f4497a5c969660ad99663beb1 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4062.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans ExtraCondensed", + "fontsize": "40", + "outline": "3.8", + "shadow": "2.7", + "bold": true, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 50, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 7, + 55 + ], + "karaoke_color": [ + 255, + 209, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4063.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4063.json" new file mode 100644 index 0000000000000000000000000000000000000000..f8292a8e77673a5e273f54f51159c838b8270d6e --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4063.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.2", + "shadow": "1.8", + "bold": false, + "alignment": 3, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 68, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 67, + 4, + 35 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4064.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4064.json" new file mode 100644 index 0000000000000000000000000000000000000000..ac2e448bd44781c6b511492eb5e1cdfe8b30a1ef --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4064.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.4", + "shadow": "2.4", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 38, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 96, + 13 + ], + "karaoke_color": [ + 255, + 225, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4065.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4065.json" new file mode 100644 index 0000000000000000000000000000000000000000..c2be3bdf6f06b8b0b28c5e59d19f0168949429cd --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4065.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.0", + "shadow": "2.9", + "bold": true, + "alignment": 2, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 47, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 24, + 15, + 5 + ], + "karaoke_color": [ + 255, + 233, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4066.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4066.json" new file mode 100644 index 0000000000000000000000000000000000000000..b1dda224dd1b986c76b47183a714d30927a9f87f --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4066.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "3.9", + "shadow": "2.3", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 8, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 37, + 27, + 71 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4067.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4067.json" new file mode 100644 index 0000000000000000000000000000000000000000..c89cc384cf366904a2cabf6efa268e907f1d7b7b --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4067.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.5", + "shadow": "2.0", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 69, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 15, + 81, + 10 + ], + "karaoke_color": [ + 255, + 246, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4068.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4068.json" new file mode 100644 index 0000000000000000000000000000000000000000..5ca86592c035a6b944d62b0510d8277431461686 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4068.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Noto Sans Condensed", + "fontsize": "40", + "outline": "2.4", + "shadow": "1.8", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 61, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 95, + 27, + 83 + ], + "karaoke_color": [ + 255, + 240, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4069.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4069.json" new file mode 100644 index 0000000000000000000000000000000000000000..ec753243d9073745e7e68ec64cd960568933a7d7 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4069.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Poppins", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.3", + "bold": true, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": false, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 39, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 77, + 31, + 12 + ], + "karaoke_color": [ + 255, + 251, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4070.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4070.json" new file mode 100644 index 0000000000000000000000000000000000000000..7c99bc76c31cd50f617163f418cca65ed486a7e2 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4070.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Inter 24pt", + "fontsize": "40", + "outline": "1.1", + "shadow": "1.8", + "bold": true, + "alignment": 2, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 62, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 98, + 68 + ], + "karaoke_color": [ + 255, + 231, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4071.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4071.json" new file mode 100644 index 0000000000000000000000000000000000000000..f7d0ca0d2306bfe73f6c32beda5f703ed6d76962 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4071.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 120pt", + "fontsize": "40", + "outline": "1.5", + "shadow": "1.3", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 34, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 63, + 9, + 13 + ], + "karaoke_color": [ + 255, + 234, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4072.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4072.json" new file mode 100644 index 0000000000000000000000000000000000000000..e21fd786483289c9535fcac4c514d858f4c26125 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4072.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto SemiCondensed", + "fontsize": "40", + "outline": "3.2", + "shadow": "2.7", + "bold": false, + "alignment": 1, + "animation_style": "Tĩnh", + "split_long_lines": true, + "max_words_per_line": 8, + "use_box": true, + "box_transparency": 49, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 70, + 45, + 51 + ], + "karaoke_color": [ + 255, + 200, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4073.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4073.json" new file mode 100644 index 0000000000000000000000000000000000000000..cbfd1be8dab793ef4cf6b58e3c0e0f63fd9a91ae --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4073.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Playfair Display", + "fontsize": "40", + "outline": "2.6", + "shadow": "1.7", + "bold": false, + "alignment": 2, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": false, + "box_transparency": 54, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 54, + 16, + 95 + ], + "karaoke_color": [ + 255, + 250, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4074.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4074.json" new file mode 100644 index 0000000000000000000000000000000000000000..46c29da4d7425dd3daa212ebd80f81cf3a92e204 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4074.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans", + "fontsize": "40", + "outline": "1.9", + "shadow": "2.0", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 10, + "use_box": true, + "box_transparency": 52, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 42, + 86, + 1 + ], + "karaoke_color": [ + 255, + 227, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4075.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4075.json" new file mode 100644 index 0000000000000000000000000000000000000000..cd39d7ede762e3ca20ff5a5e4ac0d4f4ad211e2a --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4075.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans Condensed", + "fontsize": "40", + "outline": "2.0", + "shadow": "1.6", + "bold": false, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 7, + "use_box": true, + "box_transparency": 66, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 74, + 100, + 96 + ], + "karaoke_color": [ + 255, + 249, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4076.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4076.json" new file mode 100644 index 0000000000000000000000000000000000000000..34e4137255d6ebafebdd1785a3e03e423352cbcc --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4076.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Google Sans Flex 36pt", + "fontsize": "40", + "outline": "3.4", + "shadow": "1.3", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": true, + "box_transparency": 32, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 98, + 73, + 39 + ], + "karaoke_color": [ + 255, + 220, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4077.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4077.json" new file mode 100644 index 0000000000000000000000000000000000000000..8be46d6ba2e235ab28ad63a9091435504cf5c209 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4077.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Open Sans", + "fontsize": "40", + "outline": "2.8", + "shadow": "1.7", + "bold": true, + "alignment": 1, + "animation_style": "Karaoke (Tô màu)", + "split_long_lines": false, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 58, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 62, + 91, + 36 + ], + "karaoke_color": [ + 255, + 222, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4078.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4078.json" new file mode 100644 index 0000000000000000000000000000000000000000..b993ee4d60a8e366171256e6c62d649652109802 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4078.json" @@ -0,0 +1,34 @@ +{ + "fontname": "Roboto", + "fontsize": "40", + "outline": "2.9", + "shadow": "2.1", + "bold": false, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": false, + "max_words_per_line": 7, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 66, + 40, + 99 + ], + "karaoke_color": [ + 255, + 253, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4079.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4079.json" new file mode 100644 index 0000000000000000000000000000000000000000..dbe81d7c9be154abe2610172d97b823dd797282d --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4079.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 36pt", + "fontsize": "40", + "outline": "2.7", + "shadow": "1.9", + "bold": true, + "alignment": 3, + "animation_style": "Hiện Theo Từ (Word by Word)", + "split_long_lines": true, + "max_words_per_line": 9, + "use_box": false, + "box_transparency": 37, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 78, + 28, + 64 + ], + "karaoke_color": [ + 255, + 236, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git "a/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4080.json" "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4080.json" new file mode 100644 index 0000000000000000000000000000000000000000..aa11569f30fef7190218ac2010526565f81b5a70 --- /dev/null +++ "b/sessions/2D392E/sub/5000 font ti\341\272\277ng t\303\242y ban nha/config_4080.json" @@ -0,0 +1,34 @@ +{ + "fontname": "DM Sans 24pt", + "fontsize": "40", + "outline": "3.6", + "shadow": "1.5", + "bold": true, + "alignment": 1, + "animation_style": "Hiện Dần (Fade)", + "split_long_lines": true, + "max_words_per_line": 6, + "use_box": false, + "box_transparency": 30, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 18, + 13, + 57 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "box_color": [ + 0, + 0, + 0 + ], + "encoding": "utf-8" +} \ No newline at end of file diff --git a/sessions/2D392E/tasks.json b/sessions/2D392E/tasks.json new file mode 100644 index 0000000000000000000000000000000000000000..1ce8c1807de5ea9aff38b84a7685b4be0890c577 --- /dev/null +++ b/sessions/2D392E/tasks.json @@ -0,0 +1,505 @@ +{ + "session_id": "2D392E", + "hf_repo": "minhchiengod/Video-Render-Auto", + "hf_base_path": "sessions/2D392E", + "total_tasks": 20, + "created_at": "2026-05-08 16:23:39", + "session_data": { + "settings": { + "ffmpeg_path": "C:/ffmpeg/bin/ffmpeg.exe", + "ffprobe_path": "C:/ffmpeg/bin/ffprobe.exe", + "temp_dir": "C:/", + "realesrgan_path": "C:/ffmpeg/bin/realesrgan-ncnn-vulkan.exe", + "enable_ai_upscale": false, + "txt_inputs": "\\\\Nas_tcg\\vệ tinh tcg\\TEAM NGHIA LON\\NGHIA\\REUP ALL\\uy test\\voice", + "txt_sub_json": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha", + "txt_logos": "", + "txt_images": "\\\\Nas_tcg\\vệ tinh tcg\\TEAM NGHIA LON\\NGHIA\\REUP ALL\\uy test\\ảnh", + "txt_outputs": "\\\\Nas_tcg\\vệ tinh tcg\\TEAM NGHIA LON\\NGHIA\\REUP ALL\\uy test\\out", + "overlay": "/content/hf_workdir/sessions/2D392E/assets/overlay", + "logo": "", + "bg_music": "", + "intro_path": "", + "voice_vol": 1.5, + "bgm_vol": 0.3, + "podcast_filter": true, + "smart_audio": true, + "bitrate": "2500", + "enable_target_size": false, + "target_size_mb": 399, + "source_mode": 1, + "slide_dur_min": 3.0, + "slide_dur_max": 6.0, + "mode1_slide_dur_min": 10.0, + "mode1_slide_dur_max": 15.0, + "mode2_amount": 5, + "mode3_amount": 2, + "mode3_type": "Static (Fast)", + "vis_cycle": 10.0, + "motion_intensity": 4.934883720930232, + "vis_motion_type": "Static", + "vis_blend": "Screen", + "vis_opacity": 0.8, + "audio_evasion": true, + "check_output": true, + "check_history": false, + "multi_pc_sync": true, + "enable_round_robin": false, + "round_robin_batch": 50, + "video_encoder": "Auto-Detect", + "anti_spam_loop": false, + "resolution": "1280x720", + "enable_sub": true, + "scale_mode": "FixedMax", + "style": { + "fontname": "Arial", + "fontsize": 48, + "bold": true, + "primary_color": [ + 255, + 255, + 255 + ], + "outline_color": [ + 0, + 0, + 0 + ], + "karaoke_color": [ + 255, + 255, + 0 + ], + "outline": 2.5, + "shadow": 1.5, + "use_box": false, + "box_color": [ + 0, + 0, + 0 + ], + "box_transparency": 50, + "animation_style": "Tĩnh", + "alignment": 2, + "split_long_lines": false, + "max_words_per_line": 7, + "bounding_box": [ + 52, + 481, + 1227, + 643 + ] + }, + "livestream_mode": false, + "mode1_type": "Multi", + "logo_scale_min": 100, + "logo_scale_max": 120, + "logo_random_pos": true, + "enable_segmented_overlay": true, + "overlay_seg_min": 5, + "overlay_seg_max": 10, + "mode1_motion_type": "Random", + "mode2_motion_type": "Random", + "xfade_transition_type": "Random", + "intro_effect_type": "Random", + "intro_effect_duration": 5.0, + "color_grade_preset": "Điện Ảnh Mỹ (Cam ấm, Nền xanh lạnh)", + "outro_effect_type": "Random", + "outro_effect_duration": 5.0, + "input_mode": "multi_folder", + "txt_nas_inputs": "", + "txt_nas_sub_json": "", + "txt_nas_logos": "", + "nas_overlay_dir": "", + "nas_motion_type": "Random", + "nas_transition_type": "Random" + }, + "history": { + "Group_1_05 A Billionaire Invited Her Black Maid to a Gala as a Joke. She Walked In Wearing a $5 Million Dress..mp3": "2026-05-08 02:30:02", + "Group_1_07 Everyone Feared Him… Why Did She Risk Her Heart Emotional Love Story.mp3": "2026-05-08 02:40:11", + "Group_1_04 She Thought He Was Gone… Then His Heart Found Her Emotional Love Story.mp3": "2026-05-08 04:32:22", + "Group_1_12 He Lost Everything… Until the Maid’s Daughter Saved His Life Emotional Love Story.mp3": "2026-05-08 14:51:26", + "Group_1_10 He Had It All… But He Couldn’t Let Her Go Emotional Love Story ❤️.mp3": "2026-05-08 03:11:42", + "Group_1_101 What Happens in Vegas Doesn’t Need to Stay There Emotional Love Story.mp3": "2026-05-08 03:17:48", + "Group_1_11 He Warned Her Not to Get Too Close… But She Did Emotional Love Story.mp3": "2026-05-08 03:19:23", + "Group_1_06 He Found Her Scarred by the Past… But His Love Rewrote the Ending Emotional Love Story.mp3": "2026-05-08 04:00:04", + "Group_1_09 Millionaire’s Pregnant Ex-Wife Faints in the Street—What Happens Next Will Shock You.mp3": "2026-05-08 14:52:31", + "Group_1_13 Taking His Daughter to the Hospital, He Finds His Ex-Girlfriend Pregnant with His Second Child.mp3": "2026-05-08 04:18:06", + "Group_1_18 She Heard Something She Was Never Meant to Hear Emotional Love Story.mp3": "2026-05-08 04:29:44", + "Group_1_21 A billionaire couldn't sleep for 5 years, until he met his new maid....mp3": "2026-05-08 05:02:38", + "Group_1_20 She Wore a CHEAP DRESS to the Billionaire's Gala...Then He Dropped His Glass and EVERYONE Gasped!.mp3": "2026-05-08 05:04:23", + "Group_1_29 He Invited His Ex-Wife to His Wedding to Shame Her, She Arrived With Bodyguards And....mp3": "2026-05-08 05:22:18", + "Group_1_25 Billionaire Ran Through the Park Full of Anger—Until He Saw His Ex Walking with Twin Babies….mp3": "2026-05-08 05:32:45", + "Group_1_70 Billionaire Was Going on Honeymoon with His Fiancée—Until He Saw His Ex at the Airport with a Baby.mp3": "2026-05-08 05:32:55", + "Group_1_28 The Thanksgiving Dinner That Changed Everything ❤️ Emotional Love Story.mp3": "2026-05-08 05:41:22", + "Group_1_48 Contract Love A Deal That Stole Her Heart Emotional Love Story ❤️.mp3": "2026-05-08 05:51:53", + "Group_1_14 Millionaire Fired His “Virgin” Maid—But Lost Control When He Saw Her with a Date at the Dance.mp3": "2026-05-08 06:00:33", + "Group_1_31 She Had Everything But Couldn’t Find Love… So She Hired Him 💔.mp3": "2026-05-08 06:08:23", + "Group_1_34 Love Found Me Again A Mature Second Chance Romance ❤️.mp3": "2026-05-08 06:16:42", + "Group_1_24 Arrogant Billionaire Tried to Humiliate His Housekeeper—She Tamed Him and He Fell Hard.mp3": "2026-05-08 06:22:02", + "Group_1_27 Billionaire Was Furious His Ex Wouldn’t Sign Divorce—Until He Saw Her Post a Photo with a Newborn.mp3": "2026-05-08 06:25:34", + "Group_1_68 He Lost Her for 14 Years… Then Found Her Again With Their Daughter Waiting.mp3": "2026-05-08 06:32:28", + "Group_1_33 Billionaire Was Angry at the Traffic Light—Until He Saw His Ex-Wife Selling Flowers with Her Baby.mp3": "2026-05-08 06:39:39", + "Group_1_40 He Lost Everything in One Night, Then an Angel Saved Him.mp3": "2026-05-08 06:56:29", + "Group_1_30 She Went to Hide in Tears in a Bathroom—And Ended Up Locked Inside with Her Millionaire Boss!.mp3": "2026-05-08 07:06:55", + "Group_1_38 He Invited His Poor Ex-Wife to Shame Her—She Arrived with a Billionaire, a Limousine, and Triplets.mp3": "2026-05-08 07:19:47", + "Group_1_32 Billionaire Returned to His Ex’s House After Four Years—A Child Ran to Him with a Familiar Smile.mp3": "2026-05-08 07:33:08", + "Group_1_44 60 Year Old Man Drives 300 Miles to Find His College Crush After 35 Years.mp3": "2026-05-08 07:46:07", + "Group_1_43 Fired as CEO. Told I'd Never Be a Father... But She Refused to Let Me Break.mp3": "2026-05-08 07:54:27", + "Group_1_45 Two Hearts Torn Apart by Obsession Emotional Love Story.mp3": "2026-05-08 08:01:03", + "Group_1_49 Billionaire Hides His Wealth to Find Real Love.mp3": "2026-05-08 08:07:32", + "Group_1_53 Billionaire never allowed women into his room until a new maid sleepwalked into his room and....mp3": "2026-05-08 08:30:30", + "Group_1_51 She Thought She Was Done With Love — But Her Neighbor Wouldn’t Give Up.mp3": "2026-05-08 08:47:35", + "Group_1_52 Left at the Altar… Saved by the Only Man Who Never Left.mp3": "2026-05-08 08:47:57", + "Group_1_16 She Made a List to Rebel Against Her Marriage… But Love Wasn’t on It Emotional Love Story.mp3": "2026-05-08 11:10:05", + "Group_1_22 He Thought It Was Just an Arrangement – But Love Changed Everything.mp3": "2026-05-08 11:20:16", + "Group_1_64 He Needed Her Skills—But Ended Up Needing Her Heart.mp3": "2026-05-08 12:23:18", + "Group_1_97 He Gave Up His Fortune for a Blind Girl’s Heart 💍 Emotional Love Story💔.mp3": "2026-05-08 12:34:43", + "Group_1_66 The Billionaire Never Confessed His Feelings—Until He Saw Her with Someone Else!.mp3": "2026-05-08 12:52:45", + "Group_1_92 She Was the Most Dangerous Woman Alive... But Fell for the One Man She Had to Protect!.mp3": "2026-05-08 12:52:56", + "Group_1_98 Billionaire Thought His Wife Betrayed Him—Until a DNA Test Proved the Newborn Baby Was His Son.mp3": "2026-05-08 12:55:24", + "Group_1_80 He Promised to Protect Her… But Fell in Love Instead Emotional Love Story.mp3": "2026-05-08 13:02:24", + "Group_1_26 Billionaire Checked His Old House Cameras Furious—And Froze When He Saw His Ex-Wife with a Newborn.mp3": "2026-05-08 13:12:36", + "Group_1_17 Billionaire Divorcee Received an Anonymous Letter—Inside Was a Photo of His Ex-Wife Holding Twins.mp3": "2026-05-08 13:10:20", + "Group_1_89 She Tried to Push Him Away… But His Love Was Relentless Emotional Love Story ❤️.mp3": "2026-05-08 13:12:01", + "Group_1_36 He Invited His Ex-wife To The Party To Humiliate Her, Then Froze When A Billionaire Kissed Her.mp3": "2026-05-08 13:26:18", + "Group_1_67 Billionaire Received a Call and Rushed to the Hospital—His Newborn Twins’ Cry Changed Him Forever.mp3": "2026-05-08 13:25:31", + "Group_1_59 Ex–Wife HUMILIATED At Party Dinner —Until Her Billionaire Husband Walks In And....mp3": "2026-05-08 14:41:09", + "Group_1_46 I Married a MUTE Billionaire to Save My Father—But STRANGE BOOK Showed Me We Had Only 5 MONTHS Left.mp3": "2026-05-08 13:32:05", + "Group_1_84 During the Meeting, Her Dress Flew Up—And the Millionaire’s Eyes Never Left Her.mp3": "2026-05-08 13:40:11", + "Group_1_69 She Was Fleeing Abuse… But He Didn’t Give Up On Her 💔.mp3": "2026-05-08 13:52:08", + "Group_1_83 He Fell in Love... - Then a DNA Test Changed Everything.mp3": "2026-05-08 13:55:01", + "Group_1_50 She Said She Was Too Old for Him… But His Love Refused to Fade Emotional True Love Story.mp3": "2026-05-08 14:00:41", + "Group_1_61 She Was Fired in Front of Everyone—Until the Millionaire Arrived and Said, “She’s My Wife”….mp3": "2026-05-08 14:01:36", + "Group_1_23 Billionaire Asked for Divorce by Text—Until a Call Said She Was in Labor with Triplets.mp3": "2026-05-08 14:14:26", + "Group_1_99 💔 She Was Ready to Give Up… Until He Found Her Emotional Love Story ❤️.mp3": "2026-05-08 14:15:00", + "Group_1_71 She was kicked out by her family for not being married — a billionaire changed her life ❤️.mp3": "2026-05-08 14:22:45", + "Group_1_95 She Was Married… But He Couldn’t Let Her Go 💔 Emotional Love Story.mp3": "2026-05-08 14:22:17", + "Group_1_41 She Dumped Her BBQ Cook Husband for a Millionaire… Not Knowing He Was Richer Than Them All.mp3": "2026-05-08 15:01:01", + "Group_1_65 When Love Finds Its Way Home Emotional Love Story.mp3": "2026-05-08 14:48:17", + "Group_1_96 My Father SOLD Me to an Appalachian Billionaire, Then He Made Me His Mountain Princess.mp3": "2026-05-08 15:00:12" + } + }, + "tasks_list": [ + { + "id": "a44e834f-a275-4dd4-a2c4-f44f85227113", + "idx": "I001", + "name": "258_Cartas de Abuelas.mp3", + "stt": "258", + "group_index": 1, + "history_key": "Group_1_258_Cartas de Abuelas.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_3767.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "258_Cartas de Abuelas.mp3", + "info_text": "STT: 258 | JSON: config_3767.json" + }, + { + "id": "a3d6d33d-b720-4917-9040-e95427c7cf04", + "idx": "I002", + "name": "265_Cartas de Abuelas.mp3", + "stt": "265", + "group_index": 1, + "history_key": "Group_1_265_Cartas de Abuelas.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_1225.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "265_Cartas de Abuelas.mp3", + "info_text": "STT: 265 | JSON: config_1225.json" + }, + { + "id": "9fa1896c-a63d-4f4c-8ab2-d9a889831305", + "idx": "I003", + "name": "266_Cartas de Abuelas.mp3", + "stt": "266", + "group_index": 1, + "history_key": "Group_1_266_Cartas de Abuelas.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_2944.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "266_Cartas de Abuelas.mp3", + "info_text": "STT: 266 | JSON: config_2944.json" + }, + { + "id": "9800e37c-24a3-4516-aab1-ac08c7b8b135", + "idx": "I004", + "name": "269_Cartas de Abuelas.mp3", + "stt": "269", + "group_index": 1, + "history_key": "Group_1_269_Cartas de Abuelas.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_1769.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "269_Cartas de Abuelas.mp3", + "info_text": "STT: 269 | JSON: config_1769.json" + }, + { + "id": "b4db7bcf-467d-42db-bc76-1be93d32a01b", + "idx": "I005", + "name": "274_Cartas de Abuelas.mp3", + "stt": "274", + "group_index": 1, + "history_key": "Group_1_274_Cartas de Abuelas.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_0930.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "274_Cartas de Abuelas.mp3", + "info_text": "STT: 274 | JSON: config_0930.json" + }, + { + "id": "8093ae72-aca2-4ac7-9300-583508eb001a", + "idx": "I006", + "name": "291_Cartas de Abuelas.mp3", + "stt": "291", + "group_index": 1, + "history_key": "Group_1_291_Cartas de Abuelas.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_0433.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "291_Cartas de Abuelas.mp3", + "info_text": "STT: 291 | JSON: config_0433.json" + }, + { + "id": "2c736992-3ec0-4180-bbbb-d9e8c85e777f", + "idx": "I007", + "name": "292_Cartas de Abuelas.mp3", + "stt": "292", + "group_index": 1, + "history_key": "Group_1_292_Cartas de Abuelas.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_2887.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "292_Cartas de Abuelas.mp3", + "info_text": "STT: 292 | JSON: config_2887.json" + }, + { + "id": "13d7c267-6d2e-4e1b-a171-9d871ccaab03", + "idx": "I008", + "name": "295_Cartas de Abuelas.mp3", + "stt": "295", + "group_index": 1, + "history_key": "Group_1_295_Cartas de Abuelas.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_0095.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "295_Cartas de Abuelas.mp3", + "info_text": "STT: 295 | JSON: config_0095.json" + }, + { + "id": "8b6a6253-d502-4276-aa14-b8ec69bb59b0", + "idx": "I009", + "name": "299_Cartas de Abuelas.mp3", + "stt": "299", + "group_index": 1, + "history_key": "Group_1_299_Cartas de Abuelas.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_1839.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "299_Cartas de Abuelas.mp3", + "info_text": "STT: 299 | JSON: config_1839.json" + }, + { + "id": "cee7c955-f71c-4917-bb56-579eb32e8178", + "idx": "I00A", + "name": "306_Cartas de Abuelas.mp3", + "stt": "306", + "group_index": 1, + "history_key": "Group_1_306_Cartas de Abuelas.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_3649.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "306_Cartas de Abuelas.mp3", + "info_text": "STT: 306 | JSON: config_3649.json" + }, + { + "id": "bb06de56-b545-487b-8e0d-9c664dc5e7d6", + "idx": "I00B", + "name": "311_Cartas de Abuelas.mp3", + "stt": "311", + "group_index": 1, + "history_key": "Group_1_311_Cartas de Abuelas.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_3125.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "311_Cartas de Abuelas.mp3", + "info_text": "STT: 311 | JSON: config_3125.json" + }, + { + "id": "c743d452-8573-4cd1-be81-a7c9838663b6", + "idx": "I00C", + "name": "327_Cartas de Abuelas.mp3", + "stt": "327", + "group_index": 1, + "history_key": "Group_1_327_Cartas de Abuelas.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_3934.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "327_Cartas de Abuelas.mp3", + "info_text": "STT: 327 | JSON: config_3934.json" + }, + { + "id": "620914e6-0090-4c52-b2e7-5919fe7b4410", + "idx": "I00D", + "name": "332_Cartas de Abuelas.mp3", + "stt": "332", + "group_index": 1, + "history_key": "Group_1_332_Cartas de Abuelas.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_2501.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "332_Cartas de Abuelas.mp3", + "info_text": "STT: 332 | JSON: config_2501.json" + }, + { + "id": "01c373f4-d352-428b-b745-4c711774d82c", + "idx": "I00E", + "name": "333_Cartas de Abuelas.mp3", + "stt": "333", + "group_index": 1, + "history_key": "Group_1_333_Cartas de Abuelas.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_2109.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "333_Cartas de Abuelas.mp3", + "info_text": "STT: 333 | JSON: config_2109.json" + }, + { + "id": "07c9627a-bd65-4120-abe5-864872a1d407", + "idx": "I00F", + "name": "347_Cartas de Abuelas.mp3", + "stt": "347", + "group_index": 1, + "history_key": "Group_1_347_Cartas de Abuelas.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_3978.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "347_Cartas de Abuelas.mp3", + "info_text": "STT: 347 | JSON: config_3978.json" + }, + { + "id": "6ad0daf7-e18b-4531-879b-da3ff5c658d8", + "idx": "I010", + "name": "348_Cartas de Abuelas.mp3", + "stt": "348", + "group_index": 1, + "history_key": "Group_1_348_Cartas de Abuelas.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_3342.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "348_Cartas de Abuelas.mp3", + "info_text": "STT: 348 | JSON: config_3342.json" + }, + { + "id": "80d48e24-8e5b-4355-9c9f-64d702671652", + "idx": "I011", + "name": "422_Secretos de Abuela.mp3", + "stt": "422", + "group_index": 1, + "history_key": "Group_1_422_Secretos de Abuela.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_3317.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "422_Secretos de Abuela.mp3", + "info_text": "STT: 422 | JSON: config_3317.json" + }, + { + "id": "42253ff6-5825-43ba-bf89-540c609fa0d0", + "idx": "I012", + "name": "426_Secretos de Abuela.mp3", + "stt": "426", + "group_index": 1, + "history_key": "Group_1_426_Secretos de Abuela.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_3010.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "426_Secretos de Abuela.mp3", + "info_text": "STT: 426 | JSON: config_3010.json" + }, + { + "id": "5ed6ce47-205b-43de-96e6-ffdb759da983", + "idx": "I013", + "name": "437_Secretos de Abuela.mp3", + "stt": "437", + "group_index": 1, + "history_key": "Group_1_437_Secretos de Abuela.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_3653.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "437_Secretos de Abuela.mp3", + "info_text": "STT: 437 | JSON: config_3653.json" + }, + { + "id": "9b459922-647c-4697-a92e-8b6ab98a31e7", + "idx": "I014", + "name": "438_Secretos de Abuela.mp3", + "stt": "438", + "group_index": 1, + "history_key": "Group_1_438_Secretos de Abuela.mp3", + "path_audio_srt": "/content/hf_workdir/sessions/2D392E/audio", + "specific_srt_json_root": "/content/hf_workdir/sessions/2D392E/sub/5000 font tiếng tây ban nha", + "specific_logo_root": "", + "specific_image_root": "/content/hf_workdir/sessions/2D392E/image/ảnh", + "path_json_style": "\\\\Nas_tcg\\vệ tinh tcg\\UY\\cần dùng\\5000 font tiếng tây ban nha\\config_0535.json", + "specific_output_root": "/content/hf_workdir/sessions/2D392E/output", + "target_filename": "438_Secretos de Abuela.mp3", + "info_text": "STT: 438 | JSON: config_0535.json" + } + ] +} \ No newline at end of file