Version 0.1

This commit is contained in:
badmark 2026-08-16 09:39:36 -06:00
parent 52944843f1
commit 09fed6365b
492 changed files with 10118 additions and 0 deletions

75
factory_config.yaml Normal file
View file

@ -0,0 +1,75 @@
# ═══════════════════════════════════════════════════════════════════════════════
# YouTube Factory — 3-PC Distributed Faceless Video Pipeline Config
# ═══════════════════════════════════════════════════════════════════════════════
pcs:
amdllm:
host: "10.4.0.181"
ssh_user: "mark"
services:
llama_cpp: {port: 8002, model: "Qwen3.5-7B-GGUF"}
comfyui: {port: 8188}
nvidiam:
host: "10.4.0.180"
ssh_user: "mark"
services:
comfyui: {port: 8188}
tts: {port: 8000, model: "kokoro"}
intelllm:
host: "10.4.0.182"
ssh_user: "mark"
services:
kokoro_tts: {port: 8003, model: "kokoro"}
whisper: {port: 0}
ffmpeg: {port: 0}
pipeline:
topic: ""
# Target Duration in seconds (7 to 12 minutes = 420s to 720s; default 540s = 9 mins)
duration_seconds: 540
output_dir: "./output"
temp_dir: "./temp"
# Visual Generation Strategy:
# - "hybrid": Dynamic mix of MiniMax H3 AI video clips + stock footage + SDXL images with Ken Burns motion
# - "all_ai": MiniMax H3 text-to-video prioritized for all segments with SDXL fallback
# - "stock_focused": High-definition stock b-roll prioritized with AI image fallback
visual_strategy: "hybrid"
# MiniMax H3 clip canvas (multiples of 32, snaps to 17k+5 frame grid at 24 fps)
clip_width: 768
clip_height: 432
# Voiceover configuration
# English: af_heart, am_adam, en-US-ChristopherNeural, en-US-AriaNeural
# Spanish: es-MX-JorgeNeural, es-MX-DaliaNeural, es-US-AlonsoNeural, es-ES-AlvaroNeural
voices:
en: "af_heart"
es: "es-MX-JorgeNeural"
# A/B Testing Thumbnails (generates N visual concepts in EN, ES, and Clean)
thumbnail_count: 3
# Procedural Background Music
# Moods: "cinematic", "space", "mystery", "history"
music_mood: "cinematic"
# Optional Stock Media API Keys (Wikimedia Commons is always enabled by default without keys)
pexels_api_key: "VvbdJlMjUXml8lMTrhTKbFmXjq3C9SbbwjomhthQJK3dI9Xl0mkv46eD"
pixabay_api_key: "57162345-44e7931fbd271a59fa5ffa111"
# 24/7 Autonomous Daemon Configuration
daemon:
poll_interval_seconds: 30
auto_trending_when_empty: true
trending_niche: "history, technology, science, tech, mysteries, ancient" # Leave empty for all niches, or specify: "history", "space", "science", "tech", "mysteries"
max_daily_videos: 12
# YouTube Data API v3 Upload Configuration
youtube:
client_secrets_file: "client_secrets.json"
token_file: "youtube_token.json"
default_privacy: "private" # "private", "unlisted", or "public"
auto_upload: false

181
implementation_plan.md Normal file
View file

@ -0,0 +1,181 @@
# YouTube Factory — Complete 24/7 Faceless Video Pipeline Implementation Plan
Build a comprehensive, production-ready, distributed faceless video generation pipeline utilizing 3 self-hosted PCs (AMDLLM, NvidiaLLM, IntelLLM) capable of running autonomously 24/7.
## Architecture Overview
```
┌────────────────────────────────────────────────────────────────────────────────────────┐
│ ORCHESTRATOR & 24/7 ENGINE │
│ • Topic Modes: Single (--topic), Batch (--batch), Live Trending (--trending) │
│ • 24/7 Daemon Worker (--daemon) with Queue Manager & Fault-Tolerant Checkpoints │
│ • YouTube Uploader Readiness (YouTube Data API v3 OAuth2 + Metadata + Captions) │
└────────────────────────────────────────────────────────────────────────────────────────┘
┌───────────────────────────┼───────────────────────────┐
▼ ▼ ▼
┌──────────────────┐ ┌──────────────────┐ ┌──────────────────┐
│ AMDLLM (port 8002)│ │NvidiaLLM (port 8188│ │IntelLLM (port 8003│
│ 10.4.0.181 │ │ 10.4.0.180 │ │ 10.4.0.182 │
├──────────────────┤ ├──────────────────┤ ├──────────────────┤
│ • llama.cpp LLM │ │ • ComfyUI │ │ • Kokoro TTS │
│ • Qwen3.5-7B │ │ • MiniMax H3 T2V │ │ (EN & ES) │
│ • Scriptwriting │ │ • z-image-turbo │ │ • faster-whisper │
│ • Translation │ │ • SDXL Checkpoint│ │ subtitles │
│ • SEO & Chapters │ │ • A/B Thumbnails │ │ • FFmpeg Engine │
│ • Trending Ideas │ │ • Stock Media │ │ • Audio Ducking │
└──────────────────┘ └──────────────────┘ └──────────────────┘
```
---
## User Review Required
> [!IMPORTANT]
> **Stock Media Sources**: The pipeline will fetch free stock videos & images from Wikimedia Commons / Open Archives by default without any API keys required. It will also support optional Pexels and Pixabay API keys if configured in `factory_config.yaml`.
> [!IMPORTANT]
> **Kokoro Server Update on IntelLLM**: We will enhance `kokoro_server.py` on IntelLLM (:8003) to dynamically support both English (`lang_code='a'`) and Spanish (`lang_code='e'`) pipelines for native pronunciation across both language tracks.
---
## Open Questions
> [!NOTE]
> None blocking. The pipeline will support all 3 execution modes out-of-the-box:
> 1. User-supplied single topic (`--topic "..."`)
> 2. User-supplied batch list (`--batch "..." "..."`)
> 3. Autonomous 24/7 trending mode (`--daemon --auto-trending`)
---
## Proposed Changes
### Configuration & Core
#### [MODIFY] [factory_config.yaml](file:///home/mark/Projects/GeminiVideoPipeline/factory_config.yaml)
- Add configurations for:
- `visual_strategy`: `hybrid` (MiniMax H3 + Stock Video + AI Image + Stock Image), `all_ai`, or `fast_stock`
- `stock_media`: Pexels/Pixabay API keys (optional), Wikimedia Commons enabled
- `music`: procedural cinematic soundtrack generator settings, mood/genre selection, ducking volume (-20dB)
- `trending`: Google Trends RSS / YouTube viral niche exploration settings
- `daemon`: 24/7 interval, queue auto-refill, maximum daily video quota
- `youtube_api`: client secrets path, privacy status (`private`, `unlisted`, `public`), auto-upload flag
---
### Pipeline Modules (`pipeline/`)
#### [NEW] [pipeline/script_gen.py](file:///home/mark/Projects/GeminiVideoPipeline/pipeline/script_gen.py)
- Generates structured documentary scripts via AMDLLM llama.cpp (Qwen3.5-7B).
- Generates 3+ high-CTR English titles & 3+ Spanish titles for A/B testing.
- Generates SEO descriptions with hashtags and structured chapter headings.
- Translates narration into natural Latin American Spanish.
- Extracts visual generation prompts and stock media search keywords for each scene.
#### [NEW] [pipeline/tts_gen.py](file:///home/mark/Projects/GeminiVideoPipeline/pipeline/tts_gen.py)
- Generates voiceover audio for English (`af_heart`, `am_adam`) and Spanish (`ef_dora`, `em_alex`) via IntelLLM Kokoro :8003.
- Tracks per-segment exact duration and timestamps to compute precise chapter markers (`00:00 - Intro`, etc.).
#### [NEW] [pipeline/visual_gen.py](file:///home/mark/Projects/GeminiVideoPipeline/pipeline/visual_gen.py)
- **ComfyUI MiniMax H3 Video Generator**: Sends text-to-video requests to NvidiaLLM.
- **ComfyUI z-image-turbo / SDXL Image Generator**: Fast high-resolution image rendering on NvidiaLLM.
- **Stock Media Downloader**: Queries Wikimedia Commons and Pexels/Pixabay for relevant HD video clips and images.
- **Ken Burns Motion FX**: Automatically animates still images with slow zoom/pan motion in FFmpeg.
- **Intelligent Fallback Hierarchy**: MiniMax H3 Video → Stock Video → AI Image → Stock Image.
#### [NEW] [pipeline/music_gen.py](file:///home/mark/Projects/GeminiVideoPipeline/pipeline/music_gen.py)
- Generates mood-tailored cinematic background music matching the exact target duration.
- Supports procedural multi-layer ambient/cinematic audio synthesis (pads, harmonic chord progressions, sub-bass, atmospheric textures).
- Generates clean looped background music ready for dynamic audio ducking.
#### [NEW] [pipeline/sub_gen.py](file:///home/mark/Projects/GeminiVideoPipeline/pipeline/sub_gen.py)
- Runs Faster-Whisper on IntelLLM to generate word-accurate `.srt` subtitles in English and Spanish.
#### [NEW] [pipeline/thumb_gen.py](file:///home/mark/Projects/GeminiVideoPipeline/pipeline/thumb_gen.py)
- Generates 3 distinct thumbnail concepts (A, B, C) for A/B testing on NvidiaLLM.
- For each concept, renders:
1. English title overlay (`thumb_A_en.png`)
2. Spanish title overlay (`thumb_A_es.png`)
3. Clean/raw background without text (`thumb_A_clean.png`)
- High-contrast typography with bold outline and dark backing box for maximum CTR.
#### [NEW] [pipeline/assembler.py](file:///home/mark/Projects/GeminiVideoPipeline/pipeline/assembler.py)
- Orchestrates multi-track video assembly on IntelLLM FFmpeg:
- Video track (normalized 1080p/720p 25fps clips + Ken Burns transitions)
- Voiceover track
- Background music track with **active audio ducking** (`sidechaincompress`)
- Subtitle burning and embedding
- Embedded chapter metadata
#### [NEW] [pipeline/trending.py](file:///home/mark/Projects/GeminiVideoPipeline/pipeline/trending.py)
- Real-time Google Trends RSS query & YouTube trending feed parser.
- AMDLLM LLM viral documentary topic ideation engine for automated 24/7 topic discovery across niches (Science, History, Tech, Space, Mysteries).
#### [NEW] [pipeline/queue_manager.py](file:///home/mark/Projects/GeminiVideoPipeline/pipeline/queue_manager.py)
- Persistent SQLite/JSON queue manager for 24/7 autonomous scheduling.
- Tracks job statuses: `QUEUED`, `PROCESSING`, `COMPLETED`, `FAILED`.
- Resumable checkpointing: saves intermediate artifacts so interrupted jobs resume without repeating expensive AI generation steps.
#### [NEW] [pipeline/youtube_uploader.py](file:///home/mark/Projects/GeminiVideoPipeline/pipeline/youtube_uploader.py)
- YouTube Data API v3 upload module:
- Google OAuth2 authentication flow (`client_secrets.json` / token storage).
- Video upload with Title, Description (including chapters), Tags, Category.
- Custom thumbnail assignment.
- Multi-language caption (`.srt`) uploading.
- Privacy status setting (`private`, `unlisted`, `public`).
---
### Main Orchestrator & CLI
#### [MODIFY] [youtube_factory.py](file:///home/mark/Projects/GeminiVideoPipeline/youtube_factory.py)
- Refactor into the unified master CLI connecting all pipeline components.
- CLI arguments:
- `--topic "<topic>"`: Single video pipeline
- `--batch "<t1>" "<t2>"` / `--batch-file <file>`: Batch video processing
- `--trending [--niche <niche>] [--count <N>]`: Auto-pull trending topics
- `--daemon`: 24/7 continuous autonomous worker
- `--queue-add`, `--queue-list`, `--queue-retry`
- `--health`: Check all 3 PCs & services
- `--upload <job_id>`: YouTube API uploader
- `--dry-run`: Test script & metadata generation without heavy rendering
#### [MODIFY] [README.md](file:///home/mark/Projects/GeminiVideoPipeline/README.md)
- Update documentation with 24/7 daemon usage, stock media options, trending topic commands, background music, chapter formatting, and YouTube API upload guide.
---
## Verification Plan
### Automated & Integration Tests
1. **Health Check**:
```bash
python3 youtube_factory.py --health
```
2. **Trending Topic Discovery Test**:
```bash
python3 -c "from pipeline.trending import TrendingFetcher; print(TrendingFetcher().get_trending_topics(count=3))"
```
3. **Procedural Background Music Generation Test**:
```bash
python3 -c "from pipeline.music_gen import MusicGen; print(MusicGen().generate(30, '/tmp/test_music.wav'))"
```
4. **Stock Media Downloader Test**:
```bash
python3 -c "from pipeline.visual_gen import StockMediaFetcher; print(StockMediaFetcher().search_and_download('Ancient Rome', '/tmp/test_stock.jpg'))"
```
5. **Dry Run End-to-End Pipeline Test**:
```bash
python3 youtube_factory.py --topic "The Secrets of the Mariana Trench" --dry-run
```
6. **Full Video Generation Test (Single Topic)**:
```bash
python3 youtube_factory.py --topic "The Lost Library of Alexandria" --duration 60
```
- Verify output directory contains:
- `_en.mp4` & `_es.mp4` with audio ducking and subtitles
- `_thumb_A_en.png`, `_thumb_A_es.png`, `_thumb_B_en.png`, etc.
- `_meta.json` with chapters, SEO description, and tags
- `_upload.txt` with formatted YouTube Studio copy-paste bundle
- `_bundle.json` for automated YouTube API uploader

245
minimaxh3.json Normal file
View file

@ -0,0 +1,245 @@
{
"92": {
"inputs": {
"filename_prefix": "video/MiniMax_H3",
"format": "auto",
"codec": "auto",
"video": [
"105:91",
0
]
},
"class_type": "SaveVideo",
"_meta": {
"title": "Save Video"
}
},
"115": {
"inputs": {
"aspect_ratio": "16:9 (Widescreen)",
"megapixels": 0.4,
"multiple": 32
},
"class_type": "ResolutionSelector",
"_meta": {
"title": "Resolution Selector"
}
},
"105:11": {
"inputs": {
"vae_name": "minimax_h3_video_vae_fp16.safetensors"
},
"class_type": "VAELoader",
"_meta": {
"title": "Load VAE"
}
},
"105:24": {
"inputs": {
"vae_name": "minimax_h3_audio_vae_fp32.safetensors"
},
"class_type": "VAELoader",
"_meta": {
"title": "Load VAE"
}
},
"105:23": {
"inputs": {
"samples": [
"105:14",
0
],
"vae": [
"105:24",
0
]
},
"class_type": "VAEDecodeAudio",
"_meta": {
"title": "VAE Decode Audio"
}
},
"105:10": {
"inputs": {
"samples": [
"105:14",
0
],
"vae": [
"105:11",
0
]
},
"class_type": "VAEDecode",
"_meta": {
"title": "VAE Decode"
}
},
"105:17": {
"inputs": {
"sampler_name": "res_multistep"
},
"class_type": "KSamplerSelect",
"_meta": {
"title": "KSamplerSelect"
}
},
"105:9": {
"inputs": {
"scheduler": "simple",
"steps": 20,
"denoise": 1,
"model": [
"105:6",
0
]
},
"class_type": "BasicScheduler",
"_meta": {
"title": "BasicScheduler"
}
},
"105:14": {
"inputs": {
"noise": [
"105:15",
0
],
"guider": [
"105:16",
0
],
"sampler": [
"105:17",
0
],
"sigmas": [
"105:9",
0
],
"latent_image": [
"105:104",
1
]
},
"class_type": "SamplerCustomAdvanced",
"_meta": {
"title": "SamplerCustomAdvanced"
}
},
"105:16": {
"inputs": {
"model": [
"105:6",
0
],
"conditioning": [
"105:104",
0
]
},
"class_type": "BasicGuider",
"_meta": {
"title": "Basic Guider"
}
},
"105:6": {
"inputs": {
"unet_name": "minimax_h3_fl2va_pruned_int8_convrot.safetensors",
"weight_dtype": "default"
},
"class_type": "UNETLoader",
"_meta": {
"title": "Load Diffusion Model"
}
},
"105:13": {
"inputs": {
"clip_name": "qwen3vl_32b_minimax_h3_nvfp4_awq.safetensors",
"type": "minimax",
"device": "default"
},
"class_type": "CLIPLoader",
"_meta": {
"title": "Load CLIP"
}
},
"105:15": {
"inputs": {
"noise_seed": 816797766160743
},
"class_type": "RandomNoise",
"_meta": {
"title": "RandomNoise"
}
},
"105:91": {
"inputs": {
"fps": 24,
"bit_depth": 8,
"images": [
"105:10",
0
],
"audio": [
"105:23",
0
]
},
"class_type": "CreateVideo",
"_meta": {
"title": "Create Video"
}
},
"105:104": {
"inputs": {
"prompt": "Realistic cinematic, camera POV walks into an eclectic 90s coffeehouse with many alternatively dressed patrons, a hippie looking dude playing guitar in the back corner, and a welcoming owner behind the counter. The place is decorated with eclectc art and furniture that was purchased from thrift stores.",
"width": [
"115",
0
],
"height": [
"115",
1
],
"length": [
"105:107",
1
],
"clip": [
"105:13",
0
],
"vae": [
"105:11",
0
]
},
"class_type": "MiniMaxH3ImageToVideo",
"_meta": {
"title": "MiniMax H3 Image to Video"
}
},
"105:107": {
"inputs": {
"expression": "max(5, round(a * 24)) + (5 - (max(5, round(a * 24)) % 17)) % 17",
"values.a": [
"105:111",
0
]
},
"class_type": "ComfyMathExpression",
"_meta": {
"title": "Math Expression"
}
},
"105:111": {
"inputs": {
"value": 5
},
"class_type": "PrimitiveFloat",
"_meta": {
"title": "Float (duration)"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,132 @@
{
"job_id": "1786872191_The_Secrets_of_the_Marian",
"topic": "The Secrets of the Mariana Trench",
"titles": [
"Mysteries of the Deepest Sea",
"The Mariana Trench: Unveiling Secrets",
"Dive into the Dark Depths"
],
"titles_es": [
"Misterios del Mar Más Profundo",
"La Marea Mariana: Revelando Secretos",
"Sumérgete en las Profundidades Oscuras"
],
"description": "Dive into the uncharted depths of the Mariana Trench, the deepest point on Earth. Discover the unique ecosystem, mysterious creatures, and scientific secrets hidden in its shadow. #Documentary #Science #Ocean\n\nTIMESTAMPS / CHAPTERS:\n00:00 - The Ancient Mystery\n00:12 - The Critical Discovery\n00:23 - Beneath the Surface\n00:33 - Unlocking Mysteries\n\n#Documentary #History #Science",
"description_es": "Sumérgete en las profundidades sin explorar del Trench Mariana, el punto más profundo de la Tierra. Descubre el ecosistema único, criaturas misteriosas y secretos científicos ocultos en su sombra. #Documentario #Ciencia #Océano\n\nCAPÍTULOS:\n00:00 - El Misterio Antiguo\n00:13 - El Descubrimiento Crítico\n00:23 - Bajo la Superficie\n00:34 - Desvelando Misterios\n\n#Documental #Historia #Ciencia",
"tags": [
"documentary",
"oceanography",
"marine biology",
"deep sea",
"Mariana Trench",
"ocean floor",
"scientific exploration",
"underwater life",
"marine ecology",
"underwater mystery",
"deep sea discovery",
"sea exploration",
"ocean trenches"
],
"chapters_en": [
{
"index": 0,
"start": 0.0,
"end": 12.475,
"duration": 12.475,
"chapter_title": "The Ancient Mystery",
"text": "In the Mariana Trench, 36,000 feet below the surface, lies an ancient mystery. Explore the deepest point on Earth, a place untouched by sunlight, where life thrives in darkness.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786872191_The_Secrets_of_the_Marian/tts_en_000.wav"
},
{
"index": 1,
"start": 12.475,
"end": 23.174999999999997,
"duration": 10.7,
"chapter_title": "The Critical Discovery",
"text": "In 1960, Swiss engineer Jacques Piccard descended into this abyss. His voyage marked the first and only human visit to the Challenger Deep. What did he find?",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786872191_The_Secrets_of_the_Marian/tts_en_001.wav"
},
{
"index": 2,
"start": 23.174999999999997,
"end": 33.275,
"duration": 10.1,
"chapter_title": "Beneath the Surface",
"text": "Today, scientists continue to uncover the secrets of this dark realm. Strange creatures, unique ecosystems, and rare minerals await exploration.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786872191_The_Secrets_of_the_Marian/tts_en_002.wav"
},
{
"index": 3,
"start": 33.275,
"end": 42.275,
"duration": 9.0,
"chapter_title": "Unlocking Mysteries",
"text": "The Mariana Trench holds more mysteries than we can imagine. As we delve deeper, the future of exploration and discovery unfolds.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786872191_The_Secrets_of_the_Marian/tts_en_003.wav"
}
],
"chapters_es": [
{
"index": 0,
"start": 0.0,
"end": 13.475,
"duration": 13.475,
"chapter_title": "El Misterio Antiguo",
"text": "En el Trench Mariana, a 36,000 pies bajo la superficie, se esconde un misterio antiguo. Explora el punto más profundo de la Tierra, un lugar que nunca ha visto la luz del sol, donde la vida sobrevive en la oscuridad.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786872191_The_Secrets_of_the_Marian/tts_es_000.wav"
},
{
"index": 1,
"start": 13.475,
"end": 23.35,
"duration": 9.875,
"chapter_title": "El Descubrimiento Crítico",
"text": "En 1960, el ingeniero suizo Jacques Piccard descendió hasta este abismo. Su viaje marcó la primera y única visita humana al Challenger Deep. ¿Qué encontró?",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786872191_The_Secrets_of_the_Marian/tts_es_001.wav"
},
{
"index": 2,
"start": 23.35,
"end": 34.375,
"duration": 11.025,
"chapter_title": "Bajo la Superficie",
"text": "Hoy en día, los científicos continúan desvelando los secretos de este reino oscuro. Criaturas extrañas, ecosistemas únicos y minerales raros esperan ser explorados.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786872191_The_Secrets_of_the_Marian/tts_es_002.wav"
},
{
"index": 3,
"start": 34.375,
"end": 44.825,
"duration": 10.45,
"chapter_title": "Desvelando Misterios",
"text": "El Trench Mariana alberga más misterios de los que podemos imaginar. A medida que nos adentramos más, se despliega el futuro de la exploración y la descubrimiento.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786872191_The_Secrets_of_the_Marian/tts_es_003.wav"
}
],
"files": {
"en": "./output/1786872191_The_Secrets_of_the_Marian_en.mp4",
"es": "./output/1786872191_The_Secrets_of_the_Marian_es.mp4"
},
"subtitles": {
"en": "./output/1786872191_The_Secrets_of_the_Marian_subtitles_en.srt",
"es": "./output/1786872191_The_Secrets_of_the_Marian_subtitles_es.srt"
},
"thumbnails": {
"en": [],
"es": [],
"clean": []
},
"timings": {
"SCRIPT": 90.9,
"TTS:EN": 18.7,
"TTS:ES": 18.8,
"MUSIC": 0.6,
"VISUAL": 9645.0,
"SUBS:EN": 11.4,
"SUBS:ES": 10.7,
"THUMBNAILS": 3610.3,
"ASSEMBLY": 34.7
},
"created_at": 1786885632.675395
}

View file

@ -0,0 +1,68 @@
1
00:00:00,000 --> 00:00:02,780
In the Mariana Trench, 36 ,000
2
00:00:02,780 --> 00:00:04,700
feet below the surface lies an
3
00:00:04,700 --> 00:00:07,500
ancient mystery. Explore the deepest point
4
00:00:07,500 --> 00:00:09,440
on Earth, a place untouched by
5
00:00:09,440 --> 00:00:11,760
sunlight, where life thrives in darkness.
6
00:00:12,600 --> 00:00:15,640
In 1960, Swiss engineer Jacques Pickard
7
00:00:15,640 --> 00:00:18,100
descended into this abyss. His voyage
8
00:00:18,100 --> 00:00:19,920
marked the first and only human
9
00:00:19,920 --> 00:00:22,000
visit to the challenger deep. What
10
00:00:22,000 --> 00:00:25,020
did he find? Today, scientists continue
11
00:00:25,020 --> 00:00:26,560
to uncover the secrets of this
12
00:00:26,560 --> 00:00:30,080
dark realm. Strange creatures, unique ecosystems,
13
00:00:30,680 --> 00:00:33,640
and rare minerals await exploration. The
14
00:00:33,640 --> 00:00:35,960
Mariana Trench holds more mysteries than
15
00:00:35,960 --> 00:00:38,000
we can imagine. As we delve
16
00:00:38,000 --> 00:00:40,380
deeper, the future of exploration and
17
00:00:40,380 --> 00:00:41,860
discovery unfolds.

View file

@ -0,0 +1,72 @@
1
00:00:00,000 --> 00:00:01,900
En el Trench Mariana, a 36
2
00:00:01,900 --> 00:00:04,600
,000 pies bajula superficie, se escandan
3
00:00:04,600 --> 00:00:06,920
misterio ante guio. Explora el punto
4
00:00:06,920 --> 00:00:08,820
más profundo de la tierra, un
5
00:00:08,820 --> 00:00:11,240
lugar cuenancajavistula las del sol, don
6
00:00:11,240 --> 00:00:13,120
la vida sobrevivía y la oscuridad.
7
00:00:13,520 --> 00:00:16,060
En 1960, el ingeniero suizo Jack
8
00:00:16,060 --> 00:00:18,640
Pickard descendió a Estabismo, su voyage
9
00:00:18,640 --> 00:00:20,520
marcó la primer y única visita
10
00:00:20,520 --> 00:00:22,660
humana al challenger deep. Cue en
11
00:00:22,660 --> 00:00:26,340
control. Poyendaia, loscientificos continuan disvolando
12
00:00:26,340 --> 00:00:29,440
los secretos de esterino oscuro. Criaturas
13
00:00:29,440 --> 00:00:32,680
extrañas, ecosystemas unicos, why minerals, raros,
14
00:00:33,000 --> 00:00:35,400
espurns, ser explorados. El Trench Mariana,
15
00:00:35,580 --> 00:00:37,800
alberga mas misterios de los cuepadimos
16
00:00:37,800 --> 00:00:40,320
imaginar. A medida que nos adentramos
17
00:00:40,320 --> 00:00:42,560
mas, se despliegue el futuro de
18
00:00:42,560 --> 00:00:44,520
la exploración y la descubrimiento.

View file

@ -0,0 +1,26 @@
============================================================
YOUTUBE UPLOAD BUNDLE — ENGLISH (Topic: The Secrets of the Mariana Trench)
============================================================
TITLES FOR A/B TESTING:
A. Mysteries of the Deepest Sea
B. The Mariana Trench: Unveiling Secrets
C. Dive into the Dark Depths
DESCRIPTION & CHAPTERS:
Dive into the uncharted depths of the Mariana Trench, the deepest point on Earth. Discover the unique ecosystem, mysterious creatures, and scientific secrets hidden in its shadow. #Documentary #Science #Ocean
TIMESTAMPS / CHAPTERS:
00:00 - The Ancient Mystery
00:12 - The Critical Discovery
00:23 - Beneath the Surface
00:33 - Unlocking Mysteries
#Documentary #History #Science
TAGS:
documentary, oceanography, marine biology, deep sea, Mariana Trench, ocean floor, scientific exploration, underwater life, marine ecology, underwater mystery, deep sea discovery, sea exploration, ocean trenches
VIDEO FILE: ./output/1786872191_The_Secrets_of_the_Marian_en.mp4
SUBTITLES: ./output/1786872191_The_Secrets_of_the_Marian_subtitles_en.srt
THUMBNAILS:

View file

@ -0,0 +1,26 @@
============================================================
PAQUETE DE SUBIDA A YOUTUBE — ESPAÑOL (Tema: The Secrets of the Mariana Trench)
============================================================
TÍTULOS PARA PRUEBA A/B:
A. Misterios del Mar Más Profundo
B. La Marea Mariana: Revelando Secretos
C. Sumérgete en las Profundidades Oscuras
DESCRIPCIÓN Y CAPÍTULOS:
Sumérgete en las profundidades sin explorar del Trench Mariana, el punto más profundo de la Tierra. Descubre el ecosistema único, criaturas misteriosas y secretos científicos ocultos en su sombra. #Documentario #Ciencia #Océano
CAPÍTULOS:
00:00 - El Misterio Antiguo
00:13 - El Descubrimiento Crítico
00:23 - Bajo la Superficie
00:34 - Desvelando Misterios
#Documental #Historia #Ciencia
ETIQUETAS / TAGS:
documentary, oceanography, marine biology, deep sea, Mariana Trench, ocean floor, scientific exploration, underwater life, marine ecology, underwater mystery, deep sea discovery, sea exploration, ocean trenches
ARCHIVO DE VIDEO: ./output/1786872191_The_Secrets_of_the_Marian_es.mp4
SUBTÍTULOS: ./output/1786872191_The_Secrets_of_the_Marian_subtitles_es.srt
MINIATURAS:

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,144 @@
{
"job_id": "1786872908_The_Secrets_of_the_Marian",
"topic": "The Secrets of the Mariana Trench",
"titles": [
"Mariana Trench: Deeper Than You Can Imagine",
"Unearthing the Secrets of the Deepest Ocean",
"The Mariana Trench: A Journey to the Abyss"
],
"titles_es": [
"Mariana Trench: Más Profundo de lo Que Puedes Imaginar",
"Descubriendo los Secretos del Último Rincón del Océano",
"La Mariana Trench: Un Viaje al Abismo"
],
"description": "Dive into the mysterious depths of the Mariana Trench, the deepest part of our oceans. Discover the unique creatures, extreme pressures, and scientific mysteries that await explorers. #Documentary #Science #Oceans\n\nTIMESTAMPS / CHAPTERS:\n00:00 - The Ancient Mystery\n00:08 - The Critical Discovery\n00:16 - The Baffling Discoveries\n00:24 - The Critical Future\n\n#Documentary #History #Science",
"description_es": "Sumérgete en los misteriosos confines de la Mariana Trench, la parte más profunda de nuestros océanos. Descubre criaturas únicas, presiones extremas y misterios científicos que esperan a los exploradores. #Documentario #Ciencia #Océanos\n\nCAPÍTULOS:\n00:00 - El Misterio Antiguo\n00:09 - La Descubierta Crítica\n00:18 - Las Descubiertas Desconcertantes\n00:26 - El Futuro Crítico\n\n#Documental #Historia #Ciencia",
"tags": [
"documentary",
"science",
"oceans",
"deep sea",
"Mariana Trench",
"pressure",
"creatures",
"exploration",
"depth",
"environment",
"discovery",
"explorers",
"environmental"
],
"chapters_en": [
{
"index": 0,
"start": 0.0,
"end": 8.775,
"duration": 8.775,
"chapter_title": "The Ancient Mystery",
"text": "For centuries, the Mariana Trench has remained a mysterious, unexplored world. Its depths hold secrets waiting to be uncovered.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786872908_The_Secrets_of_the_Marian/tts_en_000.wav"
},
{
"index": 1,
"start": 8.775,
"end": 16.950000000000003,
"duration": 8.175,
"chapter_title": "The Critical Discovery",
"text": "In 1960, the first human dove into the Mariana Trench, revealing the harsh reality of life at extreme depths.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786872908_The_Secrets_of_the_Marian/tts_en_001.wav"
},
{
"index": 2,
"start": 16.950000000000003,
"end": 24.700000000000003,
"duration": 7.75,
"chapter_title": "The Baffling Discoveries",
"text": "Recent expeditions have uncovered unique ecosystems and creatures, challenging our understanding of life on Earth.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786872908_The_Secrets_of_the_Marian/tts_en_002.wav"
},
{
"index": 3,
"start": 24.700000000000003,
"end": 33.825,
"duration": 9.125,
"chapter_title": "The Critical Future",
"text": "Continuing exploration of the Mariana Trench could unlock secrets that benefit science, technology, and our understanding of the unknown.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786872908_The_Secrets_of_the_Marian/tts_en_003.wav"
}
],
"chapters_es": [
{
"index": 0,
"start": 0.0,
"end": 9.675,
"duration": 9.675,
"chapter_title": "El Misterio Antiguo",
"text": "Por siglos, la Mariana Trench ha permanecido como un misterio, un mundo inexplorado. Sus profundidades albergan secretos esperando ser descubiertos.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786872908_The_Secrets_of_the_Marian/tts_es_000.wav"
},
{
"index": 1,
"start": 9.675,
"end": 18.025,
"duration": 8.35,
"chapter_title": "La Descubierta Crítica",
"text": "En 1960, el primer humano sumergió hasta la Mariana Trench, revelando la dura realidad de la vida en extremos de profundidad.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786872908_The_Secrets_of_the_Marian/tts_es_001.wav"
},
{
"index": 2,
"start": 18.025,
"end": 26.15,
"duration": 8.125,
"chapter_title": "Las Descubiertas Desconcertantes",
"text": "Expediciones recientes han descubierto ecosistemas y criaturas únicas, desafiando nuestra comprensión de la vida en la Tierra.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786872908_The_Secrets_of_the_Marian/tts_es_002.wav"
},
{
"index": 3,
"start": 26.15,
"end": 35.325,
"duration": 9.175,
"chapter_title": "El Futuro Crítico",
"text": "La exploración continua de la Mariana Trench podría revelar secretos que beneficien la ciencia, la tecnología y nuestra comprensión del desconocido.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786872908_The_Secrets_of_the_Marian/tts_es_003.wav"
}
],
"files": {
"en": "./output/1786872908_The_Secrets_of_the_Marian_en.mp4",
"es": "./output/1786872908_The_Secrets_of_the_Marian_es.mp4"
},
"subtitles": {
"en": "./output/1786872908_The_Secrets_of_the_Marian_subtitles_en.srt",
"es": "./output/1786872908_The_Secrets_of_the_Marian_subtitles_es.srt"
},
"thumbnails": {
"en": [
"./output/1786872908_The_Secrets_of_the_Marian_thumb_A_en.png",
"./output/1786872908_The_Secrets_of_the_Marian_thumb_B_en.png",
"./output/1786872908_The_Secrets_of_the_Marian_thumb_C_en.png"
],
"es": [
"./output/1786872908_The_Secrets_of_the_Marian_thumb_A_es.png",
"./output/1786872908_The_Secrets_of_the_Marian_thumb_B_es.png",
"./output/1786872908_The_Secrets_of_the_Marian_thumb_C_es.png"
],
"clean": [
"./output/1786872908_The_Secrets_of_the_Marian_thumb_A_clean.png",
"./output/1786872908_The_Secrets_of_the_Marian_thumb_B_clean.png",
"./output/1786872908_The_Secrets_of_the_Marian_thumb_C_clean.png"
]
},
"timings": {
"SCRIPT": 86.4,
"TTS:EN": 16.5,
"TTS:ES": 15.1,
"MUSIC": 0.5,
"VISUAL": 52.2,
"SUBS:EN": 9.1,
"SUBS:ES": 9.5,
"THUMBNAILS": 47.8,
"ASSEMBLY": 64.0
},
"created_at": 1786873209.4279642
}

View file

@ -0,0 +1,52 @@
1
00:00:00,000 --> 00:00:02,500
For centuries, the Mariana Trench has
2
00:00:02,500 --> 00:00:05,800
remained a mysterious, unexplored world. Its
3
00:00:05,800 --> 00:00:07,720
depths hold secrets waiting to be
4
00:00:07,720 --> 00:00:11,240
uncovered. In 1960, the first human
5
00:00:11,240 --> 00:00:13,620
dove into the Mariana Trench, revealing
6
00:00:13,620 --> 00:00:15,460
the harsh reality of life at
7
00:00:15,460 --> 00:00:18,880
extreme depths. Recent expeditions have
8
00:00:18,880 --> 00:00:22,320
uncovered unique ecosystems and creatures, challenging
9
00:00:22,320 --> 00:00:24,100
our understanding of life on Earth.
10
00:00:24,100 --> 00:00:27,340
Continuing exploration of the Mariana Trench
11
00:00:27,340 --> 00:00:30,020
could unlock secrets that benefit science,
12
00:00:30,500 --> 00:00:32,760
technology, and our understanding of the
13
00:00:32,760 --> 00:00:33,140
unknown.

View file

@ -0,0 +1,56 @@
1
00:00:00,000 --> 00:00:01,940
Por siglos, la Mariana Trenche ha
2
00:00:01,940 --> 00:00:04,640
permancido como un misterio, un mando
3
00:00:04,640 --> 00:00:07,960
inexplorado, sus profundidades albergán secretos de
4
00:00:07,960 --> 00:00:11,220
espurrándose a discubirdos. En 1960, el
5
00:00:11,220 --> 00:00:13,380
primer humano sumergió hasto la Mariana
6
00:00:13,380 --> 00:00:15,900
Trenche, revelando la dura realidad de
7
00:00:15,900 --> 00:00:17,760
la vida en extremos de profundidad.
8
00:00:18,220 --> 00:00:21,380
Expeditions Rescientes, han discubirdo ecosistemas y
9
00:00:21,380 --> 00:00:24,700
criaturas unicas, disafiando nuestra comprensión
10
00:00:24,700 --> 00:00:25,920
de la vida en la tierra.
11
00:00:25,920 --> 00:00:28,140
La exploración continúa de la Mariana
12
00:00:28,140 --> 00:00:30,940
Trenche, Padria Reveller -Secredos, que beneficio
13
00:00:30,940 --> 00:00:33,020
en la Asiancia, la tecnología y
14
00:00:33,020 --> 00:00:35,020
nuestra comprensión del descanocido.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

View file

@ -0,0 +1,29 @@
============================================================
YOUTUBE UPLOAD BUNDLE — ENGLISH (Topic: The Secrets of the Mariana Trench)
============================================================
TITLES FOR A/B TESTING:
A. Mariana Trench: Deeper Than You Can Imagine
B. Unearthing the Secrets of the Deepest Ocean
C. The Mariana Trench: A Journey to the Abyss
DESCRIPTION & CHAPTERS:
Dive into the mysterious depths of the Mariana Trench, the deepest part of our oceans. Discover the unique creatures, extreme pressures, and scientific mysteries that await explorers. #Documentary #Science #Oceans
TIMESTAMPS / CHAPTERS:
00:00 - The Ancient Mystery
00:08 - The Critical Discovery
00:16 - The Baffling Discoveries
00:24 - The Critical Future
#Documentary #History #Science
TAGS:
documentary, science, oceans, deep sea, Mariana Trench, pressure, creatures, exploration, depth, environment, discovery, explorers, environmental
VIDEO FILE: ./output/1786872908_The_Secrets_of_the_Marian_en.mp4
SUBTITLES: ./output/1786872908_The_Secrets_of_the_Marian_subtitles_en.srt
THUMBNAILS:
- ./output/1786872908_The_Secrets_of_the_Marian_thumb_A_en.png
- ./output/1786872908_The_Secrets_of_the_Marian_thumb_B_en.png
- ./output/1786872908_The_Secrets_of_the_Marian_thumb_C_en.png

View file

@ -0,0 +1,29 @@
============================================================
PAQUETE DE SUBIDA A YOUTUBE — ESPAÑOL (Tema: The Secrets of the Mariana Trench)
============================================================
TÍTULOS PARA PRUEBA A/B:
A. Mariana Trench: Más Profundo de lo Que Puedes Imaginar
B. Descubriendo los Secretos del Último Rincón del Océano
C. La Mariana Trench: Un Viaje al Abismo
DESCRIPCIÓN Y CAPÍTULOS:
Sumérgete en los misteriosos confines de la Mariana Trench, la parte más profunda de nuestros océanos. Descubre criaturas únicas, presiones extremas y misterios científicos que esperan a los exploradores. #Documentario #Ciencia #Océanos
CAPÍTULOS:
00:00 - El Misterio Antiguo
00:09 - La Descubierta Crítica
00:18 - Las Descubiertas Desconcertantes
00:26 - El Futuro Crítico
#Documental #Historia #Ciencia
ETIQUETAS / TAGS:
documentary, science, oceans, deep sea, Mariana Trench, pressure, creatures, exploration, depth, environment, discovery, explorers, environmental
ARCHIVO DE VIDEO: ./output/1786872908_The_Secrets_of_the_Marian_es.mp4
SUBTÍTULOS: ./output/1786872908_The_Secrets_of_the_Marian_subtitles_es.srt
MINIATURAS:
- ./output/1786872908_The_Secrets_of_the_Marian_thumb_A_es.png
- ./output/1786872908_The_Secrets_of_the_Marian_thumb_B_es.png
- ./output/1786872908_The_Secrets_of_the_Marian_thumb_C_es.png

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,253 @@
{
"job_id": "1786889324_What_secret_knowledge_did",
"topic": "What secret knowledge did the ancient egyptians posses?",
"titles": [
"What Secrets Did Ancient Egyptians Hold?",
"Unveiling Ancient Egyptian Mysteries",
"The Hidden Knowledge of Ancient Egypt"
],
"titles_es": [
"¿Qué Secretos Ocultaban los Antiguos Egipcios?",
"Desvelando Misterios Egipcios",
"El Saber Oculto de los Antiguos Egipcios"
],
"description": "Dive into the enigmatic world of ancient Egypt and explore the hidden knowledge that has intrigued historians and scholars for centuries. This documentary uncovers the secrets of the ancients, from their advanced mathematical and architectural prowess to their spiritual beliefs and medical practices. Unravel the mysteries of the past and gain insights into the civilization that left an indelible mark on human history. #Documentary #History #AncientEgypt\n\nTIMESTAMPS / CHAPTERS:\n00:00 - The Dawn\n00:11 - Mathematical Mastery\n00:22 - Astronomical Insights\n00:33 - Advanced Medicine\n00:45 - Spiritual Wisdom\n00:56 - Architectural Genius\n01:05 - Engineering Marvels\n01:15 - Mystical Texts\n01:25 - Cultural Innovations\n01:36 - Legacy of Secrets\n\n#Documentary #History #Science",
"description_es": "Sumérgete en el mundo enigmático de Egipto antiguo y explora el conocimiento oculto que ha intrigado a historiadores y eruditos durante siglos. Este documental desvela los secretos de los antiguos, desde su maestría matemática y arquitectónica hasta sus creencias espirituales y prácticas médicas. Desatornilla los misterios del pasado y obtén perspectivas sobre una civilización que dejó un sello indeleble en la historia humana. #Documentario #Historia #EgiptoAntiguo\n\nCAPÍTULOS:\n00:00 - La Alborada\n00:11 - Maestría Matemática\n00:24 - Insights Astronómicos\n00:35 - Medicina Avanzada\n00:47 - Sabiduría Espiritual\n00:59 - Genio Arquitectónico\n01:08 - Maravillas de Ingeniería\n01:19 - Textos Místicos\n01:30 - Innovaciones Culturales\n01:43 - Legado de Secretos\n\n#Documental #Historia #Ciencia",
"tags": [
"documentary",
"ancientegypt",
"history",
"secrets",
"knowledge",
"archaeology",
"mathematics",
"architecture",
"medicine",
"spirituality",
"ancientcivilizations",
"historydocumentary",
"ancientsecrets",
"egyptianmysteries"
],
"chapters_en": [
{
"index": 0,
"start": 0.0,
"end": 11.875,
"duration": 11.875,
"chapter_title": "The Dawn",
"text": "In the early days of civilization, ancient Egypt emerged as a beacon of knowledge. The Nile River nurtured a society that thrived in mathematics, astronomy, and architecture.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_en_000.wav"
},
{
"index": 1,
"start": 11.875,
"end": 22.65,
"duration": 10.775,
"chapter_title": "Mathematical Mastery",
"text": "The Egyptians were masters of geometry, using it to build the pyramids with astonishing precision. Their calculations for pi were surprisingly accurate for their time.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_en_001.wav"
},
{
"index": 2,
"start": 22.65,
"end": 33.75,
"duration": 11.1,
"chapter_title": "Astronomical Insights",
"text": "Their knowledge of the stars guided their calendar and agricultural practices. The ancient Egyptians could predict solar and lunar eclipses with remarkable accuracy.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_en_002.wav"
},
{
"index": 3,
"start": 33.75,
"end": 45.125,
"duration": 11.375,
"chapter_title": "Advanced Medicine",
"text": "The Edwin Smith Papyrus reveals surgical practices that were far ahead of its time. They understood the circulatory system and performed amputations with astonishing skill.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_en_003.wav"
},
{
"index": 4,
"start": 45.125,
"end": 56.9,
"duration": 11.775,
"chapter_title": "Spiritual Wisdom",
"text": "The Book of the Dead offered mystical guidance to the deceased, detailing rituals and spells for the afterlife. Their beliefs were complex, involving numerous deities and cosmic forces.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_en_004.wav"
},
{
"index": 5,
"start": 56.9,
"end": 65.8,
"duration": 8.9,
"chapter_title": "Architectural Genius",
"text": "The Great Pyramid of Giza is a testament to their architectural prowess. It remains one of the most enduring symbols of human achievement.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_en_005.wav"
},
{
"index": 6,
"start": 65.8,
"end": 75.975,
"duration": 10.175,
"chapter_title": "Engineering Marvels",
"text": "The construction of the pyramids required advanced engineering techniques. Their knowledge of water management and irrigation was crucial for the growth of crops.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_en_006.wav"
},
{
"index": 7,
"start": 75.975,
"end": 85.3,
"duration": 9.325,
"chapter_title": "Mystical Texts",
"text": "The Rosetta Stone helped decipher hieroglyphs, revealing the complex texts that tell of the pharaohs and their reigns. Each symbol held a deep meaning.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_en_007.wav"
},
{
"index": 8,
"start": 85.3,
"end": 96.925,
"duration": 11.625,
"chapter_title": "Cultural Innovations",
"text": "The ancient Egyptians were pioneers in many fields. Their art, literature, and music continue to influence us today, hinting at a civilization far more advanced than we once thought.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_en_008.wav"
},
{
"index": 9,
"start": 96.925,
"end": 107.675,
"duration": 10.75,
"chapter_title": "Legacy of Secrets",
"text": "The secrets of the ancient Egyptians continue to fascinate us. Their knowledge, passed down through generations, has shaped our understanding of history and human achievement.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_en_009.wav"
}
],
"chapters_es": [
{
"index": 0,
"start": 0.0,
"end": 11.9,
"duration": 11.9,
"chapter_title": "La Alborada",
"text": "En los primeros días de la civilización, Egipto antiguo emergió como un faro de conocimiento. El río Nilo nutrió una sociedad que prosperó en matemáticas, astronomía y arquitectura.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_es_000.wav"
},
{
"index": 1,
"start": 11.9,
"end": 24.25,
"duration": 12.35,
"chapter_title": "Maestría Matemática",
"text": "Los egipcios eran maestros de la geometría, utilizando esta disciplina para construir pirámides con una precisión asombrosa. Sus cálculos de pi fueron sorprendentemente precisos para su época.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_es_001.wav"
},
{
"index": 2,
"start": 24.25,
"end": 35.6,
"duration": 11.35,
"chapter_title": "Insights Astronómicos",
"text": "Su conocimiento de las estrellas guiaba su calendario y prácticas agrícolas. Los antiguos egipcios podían predecir eclipses solares y lunares con una precisión asombrosa.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_es_002.wav"
},
{
"index": 3,
"start": 35.6,
"end": 47.3,
"duration": 11.7,
"chapter_title": "Medicina Avanzada",
"text": "El Papiro Edwin Smith revela prácticas quirúrgicas que estaban muy adelantadas a su tiempo. Entendían el sistema circulatorio y realizaron amputaciones con una habilidad asombrosa.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_es_003.wav"
},
{
"index": 4,
"start": 47.3,
"end": 59.625,
"duration": 12.325,
"chapter_title": "Sabiduría Espiritual",
"text": "El Libro de los Muertos ofrecía guía mística para los difuntos, detallando rituales y hechizos para el más allá. Sus creencias eran complejas, involucrando numerosos dioses y fuerzas cósmicas.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_es_004.wav"
},
{
"index": 5,
"start": 59.625,
"end": 68.575,
"duration": 8.95,
"chapter_title": "Genio Arquitectónico",
"text": "La Gran Pirámide de Giza es un testimonio de su genio arquitectónico. Se mantiene como uno de los símbolos más duraderos del logro humano.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_es_005.wav"
},
{
"index": 6,
"start": 68.575,
"end": 79.7,
"duration": 11.125,
"chapter_title": "Maravillas de Ingeniería",
"text": "La construcción de las pirámides requirió técnicas de ingeniería avanzadas. Su conocimiento de la gestión del agua e irrigación fue crucial para el crecimiento de los cultivos.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_es_006.wav"
},
{
"index": 7,
"start": 79.7,
"end": 90.75,
"duration": 11.05,
"chapter_title": "Textos Místicos",
"text": "La Piedra Rosetta ayudó a decifrar los hieroglifos, revelando los complejos textos que narran a los faraones y sus reinados. Cada símbolo llevaba un significado profundo.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_es_007.wav"
},
{
"index": 8,
"start": 90.75,
"end": 103.3,
"duration": 12.55,
"chapter_title": "Innovaciones Culturales",
"text": "Los antiguos egipcios fueron pioneros en muchos campos. Su arte, literatura y música continúan influyendo en nosotros hoy, sugiriendo una civilización mucho más avanzada de lo que una vez pensamos.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_es_008.wav"
},
{
"index": 9,
"start": 103.3,
"end": 115.35,
"duration": 12.05,
"chapter_title": "Legado de Secretos",
"text": "Los secretos de los antiguos egipcios continúan fascinándonos. Su conocimiento, transmitido a través de las generaciones, ha moldeado nuestra comprensión de la historia y el logro humano.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889324_What_secret_knowledge_did/tts_es_009.wav"
}
],
"files": {
"en": "./output/1786889324_What_secret_knowledge_did_en.mp4",
"es": "./output/1786889324_What_secret_knowledge_did_es.mp4"
},
"subtitles": {
"en": "./output/1786889324_What_secret_knowledge_did_subtitles_en.srt",
"es": "./output/1786889324_What_secret_knowledge_did_subtitles_es.srt"
},
"thumbnails": {
"en": [
"./output/1786889324_What_secret_knowledge_did_thumb_A_en.png",
"./output/1786889324_What_secret_knowledge_did_thumb_B_en.png",
"./output/1786889324_What_secret_knowledge_did_thumb_C_en.png"
],
"es": [
"./output/1786889324_What_secret_knowledge_did_thumb_A_es.png",
"./output/1786889324_What_secret_knowledge_did_thumb_B_es.png",
"./output/1786889324_What_secret_knowledge_did_thumb_C_es.png"
],
"clean": [
"./output/1786889324_What_secret_knowledge_did_thumb_A_clean.png",
"./output/1786889324_What_secret_knowledge_did_thumb_B_clean.png",
"./output/1786889324_What_secret_knowledge_did_thumb_C_clean.png"
]
},
"timings": {
"SCRIPT": 195.3,
"TTS:EN": 44.8,
"TTS:ES": 48.4,
"MUSIC": 2.0,
"VISUAL": 138.4,
"SUBS:EN": 16.5,
"SUBS:ES": 20.7,
"THUMBNAILS": 48.4,
"ASSEMBLY": 245.8
},
"created_at": 1786890085.329604
}

View file

@ -0,0 +1,172 @@
1
00:00:00,000 --> 00:00:01,880
In the early days of civilization,
2
00:00:02,520 --> 00:00:04,280
ancient Egypt emerged as a beacon
3
00:00:04,280 --> 00:00:06,860
of knowledge. The Nile River nurtured
4
00:00:06,860 --> 00:00:09,140
a society that thrived in mathematics,
5
00:00:09,720 --> 00:00:13,040
astronomy, and architecture. The Egyptians were
6
00:00:13,040 --> 00:00:15,440
masters of geometry, using it to
7
00:00:15,440 --> 00:00:17,640
build the pyramids with astonishing precision.
8
00:00:18,340 --> 00:00:20,880
Their calculations for pie were surprisingly
9
00:00:20,880 --> 00:00:23,480
accurate for their time. Their knowledge
10
00:00:23,480 --> 00:00:25,500
of the stars guided their calendar
11
00:00:25,500 --> 00:00:28,980
and agricultural practices. The ancient Egyptians
12
00:00:28,980 --> 00:00:31,540
could predict solar and lunar eclipses
13
00:00:31,540 --> 00:00:34,800
with remarkable accuracy. The Edwin Smith
14
00:00:34,800 --> 00:00:37,700
Papyrus reveals surgical practices that were
15
00:00:37,700 --> 00:00:39,700
far ahead of its time. They
16
00:00:39,700 --> 00:00:42,360
understood the circulatory system and performed
17
00:00:42,360 --> 00:00:45,660
amputations with astonishing skill. The book
18
00:00:45,660 --> 00:00:47,540
of the dead offered mystical guidance
19
00:00:47,540 --> 00:00:49,960
to the deceased, detailing rituals and
20
00:00:49,960 --> 00:00:52,400
spells for the afterlife. Their beliefs
21
00:00:52,400 --> 00:00:55,360
were complex, involving numerous deities and
22
00:00:55,360 --> 00:00:58,260
cosmic forces. The great pyramid of
23
00:00:58,260 --> 00:01:00,080
Giza is a testament to their
24
00:01:00,080 --> 00:01:02,840
architectural prowess. It remains one of
25
00:01:02,840 --> 00:01:04,680
the most enduring symbols of human
26
00:01:04,680 --> 00:01:07,500
achievement. The construction of the pyramids
27
00:01:07,500 --> 00:01:10,960
required advanced engineering techniques. Their
28
00:01:10,960 --> 00:01:13,040
knowledge of water management and irrigation
29
00:01:13,040 --> 00:01:15,060
was crucial for the growth of
30
00:01:15,060 --> 00:01:17,860
crops. The Rosetta Stone helped decipher
31
00:01:17,860 --> 00:01:20,720
hieroglyphs, revealing the complex texts that
32
00:01:20,720 --> 00:01:22,020
tell of the pharaohs and their
33
00:01:22,020 --> 00:01:24,320
reigns. Each symbol held a deep
34
00:01:24,320 --> 00:01:27,320
meaning. The ancient Egyptians were pioneers
35
00:01:27,320 --> 00:01:30,060
in many fields. Their art, literature,
36
00:01:30,520 --> 00:01:32,240
and music continue to influence us
37
00:01:32,240 --> 00:01:34,700
today, hinting at a civilization far
38
00:01:34,700 --> 00:01:36,280
more advanced than we once thought.
39
00:01:37,060 --> 00:01:38,760
The secrets of the ancient Egyptians
40
00:01:38,760 --> 00:01:41,640
continue to fascinate us. Their knowledge,
41
00:01:42,080 --> 00:01:44,480
passed down through generations, has shaped
42
00:01:44,480 --> 00:01:46,540
our understanding of history and human
43
00:01:46,540 --> 00:01:46,960
achievement.

View file

@ -0,0 +1,180 @@
1
00:00:00,000 --> 00:00:01,520
En los primeros días de la
2
00:00:01,520 --> 00:00:04,920
civilización, Egipto Antiguio emergió como unfairo
3
00:00:04,920 --> 00:00:07,540
de Canasimiento. El Rio Nilo nutrio
4
00:00:07,540 --> 00:00:09,800
un asocio de aquéprospero en matemáticas,
5
00:00:10,200 --> 00:00:13,180
Estronomía y Arquitura. Los egipcios iran
6
00:00:13,180 --> 00:00:15,680
maestros de la geometria, utilizando esta
7
00:00:15,680 --> 00:00:18,180
disciplina para construir paramites con una
8
00:00:18,180 --> 00:00:21,120
presición asembrosa. Sus calculos de pie
9
00:00:21,120 --> 00:00:24,020
furón sorprendentemente precisos para su epoca.
10
00:00:24,440 --> 00:00:26,400
Tu Canasimiento de las estrellas guiaba
11
00:00:26,400 --> 00:00:29,500
su calendario y prácticas agricolas. Los
12
00:00:29,500 --> 00:00:32,880
egipcios, Podi y Pradeshir, aclipses solas
13
00:00:32,880 --> 00:00:35,300
y lunes con una presición asembrosa.
14
00:00:35,800 --> 00:00:37,980
El papero Edwin Smith revela prácticas
15
00:00:37,980 --> 00:00:40,200
cuarurgicas, cuesta en Maya de Lentada
16
00:00:40,200 --> 00:00:42,240
es su tiempo. En Tendi y
17
00:00:42,240 --> 00:00:44,640
el sistema circulatorio, y realiza en
18
00:00:44,640 --> 00:00:47,600
emputación con una habilitada asembrosa. El
19
00:00:47,600 --> 00:00:49,420
libro de los muertos a frechigía
20
00:00:49,420 --> 00:00:51,800
mística para los difuntos de Tlendo
21
00:00:51,800 --> 00:00:53,700
Rituals y Hechizos para el Másala.
22
00:00:54,240 --> 00:00:57,540
Sus crinches iran complejos, involucrando numerosos
23
00:00:57,540 --> 00:01:00,120
dioses y fuses cosmicas. La gran
24
00:01:00,120 --> 00:01:02,480
paramite de Gizaís, un testimonio de
25
00:01:02,480 --> 00:01:05,180
su genio arquectónico. Se menciona como
26
00:01:05,180 --> 00:01:07,540
uno de los símbolos mosteraderos del
27
00:01:07,540 --> 00:01:09,760
logro humano. La construcción de las
28
00:01:09,760 --> 00:01:12,840
paramites requerió técnicas de ingeniería avanzadas.
29
00:01:13,560 --> 00:01:15,260
Su Canasimiento de la gestión del
30
00:01:15,260 --> 00:01:18,360
agua, iragasión, fucrucial para el crescimiento
31
00:01:18,360 --> 00:01:20,660
de los cultivos. La pídra Rosetta
32
00:01:20,660 --> 00:01:23,600
ayudo a desifrar los hierglicos, revelando
33
00:01:23,600 --> 00:01:25,620
los complejos textos que enerran a
34
00:01:25,620 --> 00:01:28,240
los farianos y sus rinidus. Cárdas
35
00:01:28,240 --> 00:01:31,060
símbolo levaba un significado profundo. Los
36
00:01:31,060 --> 00:01:33,400
antiguos egyptios furan pioneros en muchos
37
00:01:33,400 --> 00:01:36,140
campos. Su art, literatura y música
38
00:01:36,140 --> 00:01:38,340
continúan en flyendo en esatoros hoy,
39
00:01:38,840 --> 00:01:40,900
su geriendo una civilización mucho más
40
00:01:40,900 --> 00:01:42,960
avanzada de loco y univers pencemos.
41
00:01:43,520 --> 00:01:45,760
Los secretos de los antiguos egyptios
42
00:01:45,760 --> 00:01:48,780
continúan fascinandonos. Su Canasimiento,
43
00:01:49,140 --> 00:01:51,140
transmitido a traves de las generaciones,
44
00:01:51,600 --> 00:01:53,400
ha moldado nuestra comprensión de la
45
00:01:53,400 --> 00:01:54,900
historia, y al logro humano.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,005 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 987 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

View file

@ -0,0 +1,35 @@
============================================================
YOUTUBE UPLOAD BUNDLE — ENGLISH (Topic: What secret knowledge did the ancient egyptians posses?)
============================================================
TITLES FOR A/B TESTING:
A. What Secrets Did Ancient Egyptians Hold?
B. Unveiling Ancient Egyptian Mysteries
C. The Hidden Knowledge of Ancient Egypt
DESCRIPTION & CHAPTERS:
Dive into the enigmatic world of ancient Egypt and explore the hidden knowledge that has intrigued historians and scholars for centuries. This documentary uncovers the secrets of the ancients, from their advanced mathematical and architectural prowess to their spiritual beliefs and medical practices. Unravel the mysteries of the past and gain insights into the civilization that left an indelible mark on human history. #Documentary #History #AncientEgypt
TIMESTAMPS / CHAPTERS:
00:00 - The Dawn
00:11 - Mathematical Mastery
00:22 - Astronomical Insights
00:33 - Advanced Medicine
00:45 - Spiritual Wisdom
00:56 - Architectural Genius
01:05 - Engineering Marvels
01:15 - Mystical Texts
01:25 - Cultural Innovations
01:36 - Legacy of Secrets
#Documentary #History #Science
TAGS:
documentary, ancientegypt, history, secrets, knowledge, archaeology, mathematics, architecture, medicine, spirituality, ancientcivilizations, historydocumentary, ancientsecrets, egyptianmysteries
VIDEO FILE: ./output/1786889324_What_secret_knowledge_did_en.mp4
SUBTITLES: ./output/1786889324_What_secret_knowledge_did_subtitles_en.srt
THUMBNAILS:
- ./output/1786889324_What_secret_knowledge_did_thumb_A_en.png
- ./output/1786889324_What_secret_knowledge_did_thumb_B_en.png
- ./output/1786889324_What_secret_knowledge_did_thumb_C_en.png

View file

@ -0,0 +1,35 @@
============================================================
PAQUETE DE SUBIDA A YOUTUBE — ESPAÑOL (Tema: What secret knowledge did the ancient egyptians posses?)
============================================================
TÍTULOS PARA PRUEBA A/B:
A. ¿Qué Secretos Ocultaban los Antiguos Egipcios?
B. Desvelando Misterios Egipcios
C. El Saber Oculto de los Antiguos Egipcios
DESCRIPCIÓN Y CAPÍTULOS:
Sumérgete en el mundo enigmático de Egipto antiguo y explora el conocimiento oculto que ha intrigado a historiadores y eruditos durante siglos. Este documental desvela los secretos de los antiguos, desde su maestría matemática y arquitectónica hasta sus creencias espirituales y prácticas médicas. Desatornilla los misterios del pasado y obtén perspectivas sobre una civilización que dejó un sello indeleble en la historia humana. #Documentario #Historia #EgiptoAntiguo
CAPÍTULOS:
00:00 - La Alborada
00:11 - Maestría Matemática
00:24 - Insights Astronómicos
00:35 - Medicina Avanzada
00:47 - Sabiduría Espiritual
00:59 - Genio Arquitectónico
01:08 - Maravillas de Ingeniería
01:19 - Textos Místicos
01:30 - Innovaciones Culturales
01:43 - Legado de Secretos
#Documental #Historia #Ciencia
ETIQUETAS / TAGS:
documentary, ancientegypt, history, secrets, knowledge, archaeology, mathematics, architecture, medicine, spirituality, ancientcivilizations, historydocumentary, ancientsecrets, egyptianmysteries
ARCHIVO DE VIDEO: ./output/1786889324_What_secret_knowledge_did_es.mp4
SUBTÍTULOS: ./output/1786889324_What_secret_knowledge_did_subtitles_es.srt
MINIATURAS:
- ./output/1786889324_What_secret_knowledge_did_thumb_A_es.png
- ./output/1786889324_What_secret_knowledge_did_thumb_B_es.png
- ./output/1786889324_What_secret_knowledge_did_thumb_C_es.png

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,145 @@
{
"job_id": "1786889769_The_Lost_Library_of_Alexa",
"topic": "The Lost Library of Alexandria",
"titles": [
"The Enigma of Alexandria",
"Unearthing the Lost Library",
"Alexandria's Forgotten Knowledge"
],
"titles_es": [
"El Enigma de Alejandría",
"Descubriendo la Biblioteca Perdida",
"El Conocimiento Olvidado de Alejandría"
],
"description": "Discover the mysterious story of the Lost Library of Alexandria, one of the world's oldest and most extensive collections. Explore its rise, fall, and enduring legacy. #Documentary #History #Science\n\nTIMESTAMPS / CHAPTERS:\n00:00 - Rise of the Great\n00:11 - The Critical Discovery\n00:20 - The Final Destruction\n00:30 - Legacy of Knowledge\n\n#Documentary #History #Science",
"description_es": "Descubre la misteriosa historia de la Biblioteca Perdida de Alejandría, una de las colecciones más antiguas y extensas del mundo. Explora su ascenso, caída y legado duradero. #Documental #Historia #Ciencia\n\nCAPÍTULOS:\n00:00 - Rise of the Great\n00:11 - La Descubierta Crucial\n00:20 - La Última Destrucción\n00:31 - Legado del Saber\n\n#Documental #Historia #Ciencia",
"tags": [
"documentary",
"history",
"ancient civilization",
"library",
"alexandria",
"lost knowledge",
"ancient history",
"civilization",
"science",
"research",
"broadcaster",
"educational",
"knowledge",
"heritage"
],
"chapters_en": [
{
"index": 0,
"start": 0.0,
"end": 11.725,
"duration": 11.725,
"chapter_title": "Rise of the Great",
"text": "The Great Library of Alexandria was a beacon of knowledge, attracting scholars from all corners of the ancient world. Its vast collection of scrolls and texts was unparalleled.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889769_The_Lost_Library_of_Alexa/tts_en_000.wav"
},
{
"index": 1,
"start": 11.725,
"end": 20.825,
"duration": 9.1,
"chapter_title": "The Critical Discovery",
"text": "Among its treasures, the library housed the famous 'Papyrus of Euphorion,' a rare literary work that vanished with the library's destruction.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889769_The_Lost_Library_of_Alexa/tts_en_001.wav"
},
{
"index": 2,
"start": 20.825,
"end": 30.85,
"duration": 10.025,
"chapter_title": "The Final Destruction",
"text": "Historians debate the exact date and cause of its destruction, but by the 7th century, the library was no more, leaving only whispers of its grandeur.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889769_The_Lost_Library_of_Alexa/tts_en_002.wav"
},
{
"index": 3,
"start": 30.85,
"end": 41.35,
"duration": 10.5,
"chapter_title": "Legacy of Knowledge",
"text": "Despite its fall, the legacy of the Library of Alexandria endures. Its spirit lives on in the pursuit of knowledge and the quest to uncover its lost texts.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889769_The_Lost_Library_of_Alexa/tts_en_003.wav"
}
],
"chapters_es": [
{
"index": 0,
"start": 0.0,
"end": 11.375,
"duration": 11.375,
"chapter_title": "Rise of the Great",
"text": "La Gran Biblioteca de Alejandría era una farola de conocimiento, atraída por académicos de todos los rincones del mundo antiguo. Su extensa colección de rollos y textos era sin par.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889769_The_Lost_Library_of_Alexa/tts_es_000.wav"
},
{
"index": 1,
"start": 11.375,
"end": 20.925,
"duration": 9.55,
"chapter_title": "La Descubierta Crucial",
"text": "Entre sus tesoros, la biblioteca albergaba el famoso 'Papiro de Euforión,' un trabajo literario raro que desapareció junto con la destrucción de la biblioteca.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889769_The_Lost_Library_of_Alexa/tts_es_001.wav"
},
{
"index": 2,
"start": 20.925,
"end": 31.6,
"duration": 10.675,
"chapter_title": "La Última Destrucción",
"text": "Los historiadores debaten la fecha exacta y la causa de su destrucción, pero a finales del siglo VII, la biblioteca ya no existía, dejando solo murmullos de su grandiosidad.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889769_The_Lost_Library_of_Alexa/tts_es_002.wav"
},
{
"index": 3,
"start": 31.6,
"end": 41.975,
"duration": 10.375,
"chapter_title": "Legado del Saber",
"text": "A pesar de su caída, el legado de la Biblioteca de Alejandría persiste. Su espíritu vive en la búsqueda del conocimiento y el afán por descubrir sus textos perdidos.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889769_The_Lost_Library_of_Alexa/tts_es_003.wav"
}
],
"files": {
"en": "./output/1786889769_The_Lost_Library_of_Alexa_en.mp4",
"es": "./output/1786889769_The_Lost_Library_of_Alexa_es.mp4"
},
"subtitles": {
"en": "./output/1786889769_The_Lost_Library_of_Alexa_subtitles_en.srt",
"es": "./output/1786889769_The_Lost_Library_of_Alexa_subtitles_es.srt"
},
"thumbnails": {
"en": [
"./output/1786889769_The_Lost_Library_of_Alexa_thumb_A_en.png",
"./output/1786889769_The_Lost_Library_of_Alexa_thumb_B_en.png",
"./output/1786889769_The_Lost_Library_of_Alexa_thumb_C_en.png"
],
"es": [
"./output/1786889769_The_Lost_Library_of_Alexa_thumb_A_es.png",
"./output/1786889769_The_Lost_Library_of_Alexa_thumb_B_es.png",
"./output/1786889769_The_Lost_Library_of_Alexa_thumb_C_es.png"
],
"clean": [
"./output/1786889769_The_Lost_Library_of_Alexa_thumb_A_clean.png",
"./output/1786889769_The_Lost_Library_of_Alexa_thumb_B_clean.png",
"./output/1786889769_The_Lost_Library_of_Alexa_thumb_C_clean.png"
]
},
"timings": {
"SCRIPT": 97.4,
"TTS:EN": 24.5,
"TTS:ES": 28.1,
"MUSIC": 0.7,
"VISUAL": 1208.6,
"SUBS:EN": 9.0,
"SUBS:ES": 10.5,
"THUMBNAILS": 74.8,
"ASSEMBLY": 51.7
},
"created_at": 1786891274.544711
}

View file

@ -0,0 +1,72 @@
1
00:00:00,000 --> 00:00:02,460
The great library of Alexandria was
2
00:00:02,460 --> 00:00:04,960
a beacon of knowledge, attracting scholars
3
00:00:04,960 --> 00:00:06,580
from all corners of the ancient
4
00:00:06,580 --> 00:00:09,420
world. Its vast collection of scrolls
5
00:00:09,420 --> 00:00:12,440
and texts was unparalleled. Among its
6
00:00:12,440 --> 00:00:14,820
treasures, the library housed the famous
7
00:00:14,820 --> 00:00:17,740
Papyrus of Euphorian, a rare literary
8
00:00:17,740 --> 00:00:19,680
work that vanished with the library's
9
00:00:19,680 --> 00:00:23,000
destruction. Historians debate the exact date
10
00:00:23,000 --> 00:00:25,160
and cause of its destruction, but
11
00:00:25,160 --> 00:00:27,100
by the seventh century, the library
12
00:00:27,100 --> 00:00:29,380
was no more, leaving only whispers
13
00:00:29,380 --> 00:00:32,020
of its grandeur. Despite its fall,
14
00:00:32,440 --> 00:00:33,880
the legacy of the library of
15
00:00:33,880 --> 00:00:37,100
Alexandria endures. Its spirit lives on
16
00:00:37,100 --> 00:00:38,720
in the pursuit of knowledge and
17
00:00:38,720 --> 00:00:40,240
the quest to uncover its lost
18
00:00:40,240 --> 00:00:40,720
texts.

View file

@ -0,0 +1,76 @@
1
00:00:00,000 --> 00:00:01,920
La gran Biblióque de Legendria era
2
00:00:01,920 --> 00:00:05,120
unifarolo de Canasemiento, atreada por Académicos
3
00:00:05,120 --> 00:00:07,060
de Tuduz, Los Rincones del Mundo
4
00:00:07,060 --> 00:00:10,040
Antiguio. Su extensa coxiendo rolos, why
5
00:00:10,040 --> 00:00:12,080
textos eras sin par. Intresas de
6
00:00:12,080 --> 00:00:14,520
Soros, la Biblió Calbergaba El Famoso,
7
00:00:14,700 --> 00:00:17,740
Papiro de Euphoriano, Antrabajo Literario, Raro
8
00:00:17,740 --> 00:00:19,940
Que Dissepercio, Janto Canla de Struchián
9
00:00:19,940 --> 00:00:22,040
de la Biblióque. Los historiadores de
10
00:00:22,040 --> 00:00:23,580
Beten la fecha exacta while a
11
00:00:23,580 --> 00:00:25,600
costa de su distruchián. Piro de
12
00:00:25,600 --> 00:00:27,860
finales del siglo VII, la Biblióque
13
00:00:27,860 --> 00:00:29,320
que ya no existia, de Gendo
14
00:00:29,320 --> 00:00:31,860
Solo, Marmolos, de su grandiacidad. A
15
00:00:31,860 --> 00:00:33,620
pesar de su ceda, el legado
16
00:00:33,620 --> 00:00:35,580
de la Biblióque de Legendria persiste.
17
00:00:36,040 --> 00:00:37,280
Su espiro 2 -5 en la
18
00:00:37,280 --> 00:00:39,660
Básqueda del Canasemiento, while a fond
19
00:00:39,660 --> 00:00:41,680
por descubrier sus textos perdidos.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

View file

@ -0,0 +1,29 @@
============================================================
YOUTUBE UPLOAD BUNDLE — ENGLISH (Topic: The Lost Library of Alexandria)
============================================================
TITLES FOR A/B TESTING:
A. The Enigma of Alexandria
B. Unearthing the Lost Library
C. Alexandria's Forgotten Knowledge
DESCRIPTION & CHAPTERS:
Discover the mysterious story of the Lost Library of Alexandria, one of the world's oldest and most extensive collections. Explore its rise, fall, and enduring legacy. #Documentary #History #Science
TIMESTAMPS / CHAPTERS:
00:00 - Rise of the Great
00:11 - The Critical Discovery
00:20 - The Final Destruction
00:30 - Legacy of Knowledge
#Documentary #History #Science
TAGS:
documentary, history, ancient civilization, library, alexandria, lost knowledge, ancient history, civilization, science, research, broadcaster, educational, knowledge, heritage
VIDEO FILE: ./output/1786889769_The_Lost_Library_of_Alexa_en.mp4
SUBTITLES: ./output/1786889769_The_Lost_Library_of_Alexa_subtitles_en.srt
THUMBNAILS:
- ./output/1786889769_The_Lost_Library_of_Alexa_thumb_A_en.png
- ./output/1786889769_The_Lost_Library_of_Alexa_thumb_B_en.png
- ./output/1786889769_The_Lost_Library_of_Alexa_thumb_C_en.png

View file

@ -0,0 +1,29 @@
============================================================
PAQUETE DE SUBIDA A YOUTUBE — ESPAÑOL (Tema: The Lost Library of Alexandria)
============================================================
TÍTULOS PARA PRUEBA A/B:
A. El Enigma de Alejandría
B. Descubriendo la Biblioteca Perdida
C. El Conocimiento Olvidado de Alejandría
DESCRIPCIÓN Y CAPÍTULOS:
Descubre la misteriosa historia de la Biblioteca Perdida de Alejandría, una de las colecciones más antiguas y extensas del mundo. Explora su ascenso, caída y legado duradero. #Documental #Historia #Ciencia
CAPÍTULOS:
00:00 - Rise of the Great
00:11 - La Descubierta Crucial
00:20 - La Última Destrucción
00:31 - Legado del Saber
#Documental #Historia #Ciencia
ETIQUETAS / TAGS:
documentary, history, ancient civilization, library, alexandria, lost knowledge, ancient history, civilization, science, research, broadcaster, educational, knowledge, heritage
ARCHIVO DE VIDEO: ./output/1786889769_The_Lost_Library_of_Alexa_es.mp4
SUBTÍTULOS: ./output/1786889769_The_Lost_Library_of_Alexa_subtitles_es.srt
MINIATURAS:
- ./output/1786889769_The_Lost_Library_of_Alexa_thumb_A_es.png
- ./output/1786889769_The_Lost_Library_of_Alexa_thumb_B_es.png
- ./output/1786889769_The_Lost_Library_of_Alexa_thumb_C_es.png

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,158 @@
{
"job_id": "1786889838_The_Mysterious_Derinkuyu",
"topic": "The Mysterious Derinkuyu Underground City",
"titles": [
"Derinkuyu: The Lost Underground City",
"Unearthed: Derinkuyus Hidden Past",
"Derinkuyu: A Mysterious Underground City Revealed"
],
"titles_es": [
"Derinkuyu: La Ciudad Soterrada Olvidada",
"Descubierto: El Pasado Oculto de Derinkuyu",
"Derinkuyu: Una Ciudad Soterrada Misteriosa Revelada"
],
"description": "Discover the enigmatic Derinkuyu Underground City, a marvel of ancient engineering. Dive into its hidden chambers, explore its mysterious origins, and uncover the secrets that have remained buried for centuries. #Documentary #History #Science\n\nTIMESTAMPS / CHAPTERS:\n00:00 - Ancient Mystery\n00:11 - Critical Discovery\n00:24 - Hidden Chambers\n00:35 - Mysterious Origins\n\n#Documentary #History #Science",
"description_es": "Descubre la enigmática Ciudad Soterrada de Derinkuyu, un maravilloso ejemplo de ingeniería antigua. Sumérgete en sus salones ocultos, explora sus orígenes misteriosos e inicies el descubrimiento de secretos que han permanecido enterrados durante siglos. #Documentario #Historia #Ciencia\n\nCAPÍTULOS:\n00:00 - Misterio Antiguo\n00:12 - Descubrimiento Crítico\n00:25 - Salones Ocultos\n00:37 - Orígenes Misteriosos\n\n#Documental #Historia #Ciencia",
"tags": [
"documentary",
"history",
"ancient",
"underground city",
"derinkuyu",
"turkey",
"mystery",
"engineering",
"archaeology",
"ancient civilization",
"hidden city",
"underground",
"history"
],
"chapters_en": [
{
"index": 0,
"start": 0.0,
"end": 11.825,
"duration": 11.825,
"chapter_title": "Ancient Mystery",
"text": "In the heart of Turkey, an ancient city lies hidden, its secrets buried for millennia. Derinkuyu, a labyrinth of tunnels and chambers, was built to withstand sieges and invasions.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889838_The_Mysterious_Derinkuyu/tts_en_000.wav"
},
{
"index": 1,
"start": 11.825,
"end": 24.049999999999997,
"duration": 12.225,
"chapter_title": "Critical Discovery",
"text": "In 1960, local farmers stumbled upon the entrance, unveiling a city that could house thousands. Archaeologists raced to document the findings, piecing together the citys history.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889838_The_Mysterious_Derinkuyu/tts_en_001.wav"
},
{
"index": 2,
"start": 24.049999999999997,
"end": 35.974999999999994,
"duration": 11.925,
"chapter_title": "Hidden Chambers",
"text": "The city features complex systems for air, water, and food, hinting at a sophisticated society. Each level, with its own unique features, reveals the ingenuity of its builders.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889838_The_Mysterious_Derinkuyu/tts_en_002.wav"
},
{
"index": 3,
"start": 35.974999999999994,
"end": 46.425,
"duration": 10.45,
"chapter_title": "Mysterious Origins",
"text": "Derinkuyu remains a puzzle, with no clear records of its builders. Some theories link it to the Phrygians, Hittites, or even the Knights Templar, adding to its allure.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889838_The_Mysterious_Derinkuyu/tts_en_003.wav"
}
],
"chapters_es": [
{
"index": 0,
"start": 0.0,
"end": 12.025,
"duration": 12.025,
"chapter_title": "Misterio Antiguo",
"text": "En el corazón de Turquía, una antigua ciudad se oculta, sus secretos sepultados durante milenios. Derinkuyu, un laberinto de túneles y salones, fue construido para resistir asedios e invasiones.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889838_The_Mysterious_Derinkuyu/tts_es_000.wav"
},
{
"index": 1,
"start": 12.025,
"end": 25.625,
"duration": 13.6,
"chapter_title": "Descubrimiento Crítico",
"text": "En 1960, agricultores locales descubrieron el acceso, revelando una ciudad que podría albergar a miles de habitantes. Arqueólogos se apresuraron a documentar los hallazgos, reconstruyendo la historia de la ciudad.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889838_The_Mysterious_Derinkuyu/tts_es_001.wav"
},
{
"index": 2,
"start": 25.625,
"end": 37.975,
"duration": 12.35,
"chapter_title": "Salones Ocultos",
"text": "La ciudad cuenta con complejos sistemas de aire, agua y alimentos, sugiriendo una sociedad sofisticada. Cada nivel, con sus propias características únicas, revela la ingeniosidad de sus constructores.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889838_The_Mysterious_Derinkuyu/tts_es_002.wav"
},
{
"index": 3,
"start": 37.975,
"end": 50.625,
"duration": 12.65,
"chapter_title": "Orígenes Misteriosos",
"text": "Derinkuyu permanece un rompecabezas, sin registros claros de sus constructores. Se han propuesto teorías que lo vinculan con los Frigios, Hititas, o incluso los Caballeros Templarios, añadiendo a su encanto.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786889838_The_Mysterious_Derinkuyu/tts_es_003.wav"
}
],
"clips": {
"en": [
"./temp/1786889838_The_Mysterious_Derinkuyu/clips/clip_en_000.mp4",
"./temp/1786889838_The_Mysterious_Derinkuyu/clips/clip_en_001.mp4",
"./temp/1786889838_The_Mysterious_Derinkuyu/clips/clip_en_002.mp4",
"./temp/1786889838_The_Mysterious_Derinkuyu/clips/clip_en_003.mp4"
],
"es": [
"./temp/1786889838_The_Mysterious_Derinkuyu/clips/clip_es_000.mp4",
"./temp/1786889838_The_Mysterious_Derinkuyu/clips/clip_es_001.mp4",
"./temp/1786889838_The_Mysterious_Derinkuyu/clips/clip_es_002.mp4",
"./temp/1786889838_The_Mysterious_Derinkuyu/clips/clip_es_003.mp4"
]
},
"files": {
"en": "./output/1786889838_The_Mysterious_Derinkuyu_en.mp4",
"es": "./output/1786889838_The_Mysterious_Derinkuyu_es.mp4"
},
"subtitles": {
"en": "./output/1786889838_The_Mysterious_Derinkuyu_subtitles_en.srt",
"es": "./output/1786889838_The_Mysterious_Derinkuyu_subtitles_es.srt"
},
"thumbnails": {
"en": [
"./output/1786889838_The_Mysterious_Derinkuyu_thumb_A_en.png",
"./output/1786889838_The_Mysterious_Derinkuyu_thumb_B_en.png",
"./output/1786889838_The_Mysterious_Derinkuyu_thumb_C_en.png"
],
"es": [
"./output/1786889838_The_Mysterious_Derinkuyu_thumb_A_es.png",
"./output/1786889838_The_Mysterious_Derinkuyu_thumb_B_es.png",
"./output/1786889838_The_Mysterious_Derinkuyu_thumb_C_es.png"
],
"clean": [
"./output/1786889838_The_Mysterious_Derinkuyu_thumb_A_clean.png",
"./output/1786889838_The_Mysterious_Derinkuyu_thumb_B_clean.png",
"./output/1786889838_The_Mysterious_Derinkuyu_thumb_C_clean.png"
]
},
"timings": {
"SCRIPT": 112.9,
"TTS:EN": 33.2,
"TTS:ES": 40.9,
"MUSIC": 0.8,
"VISUAL": 1147.6,
"SUBS:EN": 9.3,
"SUBS:ES": 11.4,
"THUMBNAILS": 56.6,
"ASSEMBLY": 62.8
},
"created_at": 1786891314.4357455
}

View file

@ -0,0 +1,76 @@
1
00:00:00,000 --> 00:00:01,540
In the heart of Turkey, an
2
00:00:01,540 --> 00:00:03,900
ancient city lies hidden. Its secrets
3
00:00:03,900 --> 00:00:06,800
buried for millennia. During Kuyu, a
4
00:00:06,800 --> 00:00:09,000
labyrinth of tunnels and chambers was
5
00:00:09,000 --> 00:00:11,240
built to withstand sieges and invasions.
6
00:00:11,960 --> 00:00:14,980
In 1960, local farmers stumbled upon
7
00:00:14,980 --> 00:00:17,220
the entrance, unveiling a city that
8
00:00:17,220 --> 00:00:20,340
could house thousands. Archaeologists race to
9
00:00:20,340 --> 00:00:22,660
document the findings, piecing together the
10
00:00:22,660 --> 00:00:25,560
city's history. The city features complex
11
00:00:25,560 --> 00:00:27,860
systems for air, water, and food,
12
00:00:27,860 --> 00:00:31,180
hinting at a sophisticated society. Each
13
00:00:31,180 --> 00:00:32,960
level, with its own unique features,
14
00:00:33,440 --> 00:00:35,240
reveals the ingenuity of its builders.
15
00:00:36,200 --> 00:00:38,180
During Kuyu remains a puzzle with
16
00:00:38,180 --> 00:00:39,740
no clear records of its builders.
17
00:00:40,440 --> 00:00:41,740
Some theories link it to the
18
00:00:41,740 --> 00:00:43,960
Frigians, Hittites, or even the Knights
19
00:00:43,960 --> 00:00:45,840
Templar, adding to its allure.

View file

@ -0,0 +1,84 @@
1
00:00:00,000 --> 00:00:01,740
En el corzán de Turquia, y
2
00:00:01,740 --> 00:00:04,680
una antigua ciudad siacolta sasecrito sepultados
3
00:00:04,680 --> 00:00:07,080
de Rante Milños. Daring cuyo un
4
00:00:07,080 --> 00:00:09,120
laborinto de túneles y salones, fue
5
00:00:09,120 --> 00:00:11,740
construido para resistir asedios y invasiones.
6
00:00:12,120 --> 00:00:15,200
En 1960, agricultores locales descubrieron el
7
00:00:15,200 --> 00:00:17,480
exceso, revelando una ciudad que fue
8
00:00:17,480 --> 00:00:19,520
podria albergar a miles de habitantes.
9
00:00:20,060 --> 00:00:22,380
Arquilógos se aprieraron a documentar los
10
00:00:22,380 --> 00:00:24,860
halazgos, reconstruyendo la historia de la
11
00:00:24,860 --> 00:00:26,860
ciudad. La ciudad que cuyenta con
12
00:00:26,860 --> 00:00:28,960
complejos sistemas de heir, agua y
13
00:00:28,960 --> 00:00:31,080
alimento, sugeriendo un asocio de la
14
00:00:31,080 --> 00:00:33,800
sofisticada. Cada Nivel, con sus propias
15
00:00:33,800 --> 00:00:36,600
características únicas, revela la ingenia ciudad
16
00:00:36,600 --> 00:00:39,020
de sus constructores. Daring cuyo pérmense
17
00:00:39,020 --> 00:00:41,480
en rompecabes, sin registros claros de
18
00:00:41,480 --> 00:00:44,300
sus constructores. Cihem propuso teorias que
19
00:00:44,300 --> 00:00:46,480
lo vinculan con los frijos, heatitas,
20
00:00:46,960 --> 00:00:49,200
o incluso los caballeros templarios, y
21
00:00:49,200 --> 00:00:50,380
de indos su encanto.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

View file

@ -0,0 +1,29 @@
============================================================
YOUTUBE UPLOAD BUNDLE — ENGLISH (Topic: The Mysterious Derinkuyu Underground City)
============================================================
TITLES FOR A/B TESTING:
A. Derinkuyu: The Lost Underground City
B. Unearthed: Derinkuyus Hidden Past
C. Derinkuyu: A Mysterious Underground City Revealed
DESCRIPTION & CHAPTERS:
Discover the enigmatic Derinkuyu Underground City, a marvel of ancient engineering. Dive into its hidden chambers, explore its mysterious origins, and uncover the secrets that have remained buried for centuries. #Documentary #History #Science
TIMESTAMPS / CHAPTERS:
00:00 - Ancient Mystery
00:11 - Critical Discovery
00:24 - Hidden Chambers
00:35 - Mysterious Origins
#Documentary #History #Science
TAGS:
documentary, history, ancient, underground city, derinkuyu, turkey, mystery, engineering, archaeology, ancient civilization, hidden city, underground, history
VIDEO FILE: ./output/1786889838_The_Mysterious_Derinkuyu_en.mp4
SUBTITLES: ./output/1786889838_The_Mysterious_Derinkuyu_subtitles_en.srt
THUMBNAILS:
- ./output/1786889838_The_Mysterious_Derinkuyu_thumb_A_en.png
- ./output/1786889838_The_Mysterious_Derinkuyu_thumb_B_en.png
- ./output/1786889838_The_Mysterious_Derinkuyu_thumb_C_en.png

View file

@ -0,0 +1,29 @@
============================================================
PAQUETE DE SUBIDA A YOUTUBE — ESPAÑOL (Tema: The Mysterious Derinkuyu Underground City)
============================================================
TÍTULOS PARA PRUEBA A/B:
A. Derinkuyu: La Ciudad Soterrada Olvidada
B. Descubierto: El Pasado Oculto de Derinkuyu
C. Derinkuyu: Una Ciudad Soterrada Misteriosa Revelada
DESCRIPCIÓN Y CAPÍTULOS:
Descubre la enigmática Ciudad Soterrada de Derinkuyu, un maravilloso ejemplo de ingeniería antigua. Sumérgete en sus salones ocultos, explora sus orígenes misteriosos e inicies el descubrimiento de secretos que han permanecido enterrados durante siglos. #Documentario #Historia #Ciencia
CAPÍTULOS:
00:00 - Misterio Antiguo
00:12 - Descubrimiento Crítico
00:25 - Salones Ocultos
00:37 - Orígenes Misteriosos
#Documental #Historia #Ciencia
ETIQUETAS / TAGS:
documentary, history, ancient, underground city, derinkuyu, turkey, mystery, engineering, archaeology, ancient civilization, hidden city, underground, history
ARCHIVO DE VIDEO: ./output/1786889838_The_Mysterious_Derinkuyu_es.mp4
SUBTÍTULOS: ./output/1786889838_The_Mysterious_Derinkuyu_subtitles_es.srt
MINIATURAS:
- ./output/1786889838_The_Mysterious_Derinkuyu_thumb_A_es.png
- ./output/1786889838_The_Mysterious_Derinkuyu_thumb_B_es.png
- ./output/1786889838_The_Mysterious_Derinkuyu_thumb_C_es.png

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,279 @@
{
"job_id": "1786891137_Who_was_Jack_the_Ripper",
"topic": "Who was Jack the Ripper, who did he kill, and why was he never caught?",
"titles": [
"Jack the Ripper: The Unsolved Mystery",
"Who Was the Real Jack the Ripper?",
"Jack the Ripper: Why Was He Never Caught?"
],
"titles_es": [
"Jack el Destripador: El Misterio Sin Resolver",
"¿Quién Fue el Real Jack el Destripador?",
"Jack el Destripador: ¿Por Qué Nunca Fue Capturado?"
],
"description": "Jack the Ripper remains one of history's most notorious and enigmatic serial killers. Join us on a chilling journey through the fog-drenched streets of Victorian London, uncovering the stories behind the murders, the suspects, and the enduring mystery. #Documentary #History #JackTheRipper\n\nTIMESTAMPS / CHAPTERS:\n00:00 - The Murders\n00:11 - The Victims\n00:20 - The Suspects\n00:32 - The Letters\n00:43 - The Investigation\n00:53 - Theories\n01:02 - The Evidence\n01:11 - The Legacy\n01:21 - The Unsolved Mystery\n01:30 - The Ripper's Escape\n\n#Documentary #History #Science",
"description_es": "Jack el Destripador sigue siendo uno de los asesinos más notables y enigmáticos de la historia. Únete a nosotros en un viaje inquietante por las calles neblinosas de Londres victoriana, descubriendo las historias detrás de los asesinatos, los sospechosos y el misterio que permanece intacto. #Documental #Historia #JackElDestripador\n\nCAPÍTULOS:\n00:00 - Los Asesinatos\n00:12 - Las Víctimas\n00:24 - Los Sospechosos\n00:37 - Las Cartas\n00:49 - La Investigación\n00:59 - Las Teorías\n01:10 - La Evidencia\n01:19 - El Legado\n01:30 - El Misterio Sin Resolver\n01:40 - El Escape de Jack el Destripador\n\n#Documental #Historia #Ciencia",
"tags": [
"documentary",
"history",
"jack the ripper",
"serial killer",
"crime",
"victorian england",
"unsolved mystery",
"police investigation",
"forensic science",
"mystery",
"true crime",
"urban legend",
"police records",
"19th century"
],
"chapters_en": [
{
"index": 0,
"start": 0.0,
"end": 11.275,
"duration": 11.275,
"chapter_title": "The Murders",
"text": "In 1888, the Whitechapel district of London was terrorized by a mysterious figure known as Jack the Ripper. Five women were brutally murdered in a matter of weeks.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_en_000.wav"
},
{
"index": 1,
"start": 11.275,
"end": 20.725,
"duration": 9.45,
"chapter_title": "The Victims",
"text": "The victims were all sex workers, brutally mutilated, their bodies found in alleys and backyards. The case was dubbed 'The Whitechapel Murders'.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_en_001.wav"
},
{
"index": 2,
"start": 20.725,
"end": 32.650000000000006,
"duration": 11.925,
"chapter_title": "The Suspects",
"text": "Scores of suspects were investigated, including immigrants, doctors, and even a famous doctor, Dr. William H. Palmer. Each was a potential candidate, but all were eventually cleared.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_en_002.wav"
},
{
"index": 3,
"start": 32.650000000000006,
"end": 43.62500000000001,
"duration": 10.975,
"chapter_title": "The Letters",
"text": "The killer left two chilling letters, one to the Central News and another to the Whitechapel Vigilance Committee. They contained warnings and taunts, but no concrete evidence.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_en_003.wav"
},
{
"index": 4,
"start": 43.62500000000001,
"end": 53.22500000000001,
"duration": 9.6,
"chapter_title": "The Investigation",
"text": "The Metropolitan Police, led by Inspector Abberline, conducted a meticulous investigation, but the clues were few and the suspects many.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_en_004.wav"
},
{
"index": 5,
"start": 53.22500000000001,
"end": 62.85000000000001,
"duration": 9.625,
"chapter_title": "Theories",
"text": "Theories about Jack the Ripper range from a doctor to a woman to even a supernatural entity. Nothing has been proven, and the case remains open.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_en_005.wav"
},
{
"index": 6,
"start": 62.85000000000001,
"end": 71.22500000000001,
"duration": 8.375,
"chapter_title": "The Evidence",
"text": "Despite extensive searches, no conclusive evidence was found. The Ripper's signature was never matched, and the case went cold.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_en_006.wav"
},
{
"index": 7,
"start": 71.22500000000001,
"end": 81.67500000000001,
"duration": 10.45,
"chapter_title": "The Legacy",
"text": "Jack the Ripper has become a symbol of fear and fascination. His name has been the subject of countless books and films, a shadow that haunts the history of London.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_en_007.wav"
},
{
"index": 8,
"start": 81.67500000000001,
"end": 90.62500000000001,
"duration": 8.95,
"chapter_title": "The Unsolved Mystery",
"text": "Jack the Ripper remains one of the most enduring unsolved mysteries in history. His identity, if ever known, has never been revealed.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_en_008.wav"
},
{
"index": 9,
"start": 90.62500000000001,
"end": 98.22500000000001,
"duration": 7.6,
"chapter_title": "The Ripper's Escape",
"text": "Jack the Ripper escaped justice, leaving behind a legacy of fear and a mystery that continues to captivate the world.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_en_009.wav"
}
],
"chapters_es": [
{
"index": 0,
"start": 0.0,
"end": 12.575,
"duration": 12.575,
"chapter_title": "Los Asesinatos",
"text": "En 1888, el distrito de Whitechapel en Londres fue asolado por una figura misteriosa conocida como Jack el Destripador. Cinco mujeres fueron brutalmente asesinadas en apenas unas semanas.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_es_000.wav"
},
{
"index": 1,
"start": 12.575,
"end": 24.825,
"duration": 12.25,
"chapter_title": "Las Víctimas",
"text": "Las víctimas eran todas trabajadoras sexuales, mutiladas de manera brutal, sus cuerpos fueron encontrados en callejones y patios traseros. El caso se conoció como 'Los Asesinatos de Whitechapel'.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_es_001.wav"
},
{
"index": 2,
"start": 24.825,
"end": 37.875,
"duration": 13.05,
"chapter_title": "Los Sospechosos",
"text": "Se investigaron cientos de sospechosos, incluyendo inmigrantes, médicos y hasta un famoso doctor, Dr. William H. Palmer. Cada uno era un candidato potencial, pero todos fueron eventualmente descartados.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_es_002.wav"
},
{
"index": 3,
"start": 37.875,
"end": 49.15,
"duration": 11.275,
"chapter_title": "Las Cartas",
"text": "El asesino dejó dos cartas espeluznantes, una a Central News y otra a la Comisión de Vigilancia de Whitechapel. Contenían advertencias y desafíos, pero no evidencia concreta.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_es_003.wav"
},
{
"index": 4,
"start": 49.15,
"end": 59.275,
"duration": 10.125,
"chapter_title": "La Investigación",
"text": "La policía metropolitana, liderada por el Inspector Abberline, llevó a cabo una investigación minuciosa, pero las pistas eran pocas y los sospechosos muchos.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_es_004.wav"
},
{
"index": 5,
"start": 59.275,
"end": 70.1,
"duration": 10.825,
"chapter_title": "Las Teorías",
"text": "Las teorías sobre Jack el Destripador van desde un médico hasta una mujer, incluso hasta una entidad sobrenatural. Nada ha sido probado y el caso permanece abierto.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_es_005.wav"
},
{
"index": 6,
"start": 70.1,
"end": 79.175,
"duration": 9.075,
"chapter_title": "La Evidencia",
"text": "A pesar de las exhaustivas investigaciones, no se encontró evidencia concluyente. El sello del asesino nunca fue identificado, y el caso se enfrío.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_es_006.wav"
},
{
"index": 7,
"start": 79.175,
"end": 90.64999999999999,
"duration": 11.475,
"chapter_title": "El Legado",
"text": "Jack el Destripador se ha convertido en un símbolo de miedo y fascinación. Su nombre ha sido el tema de numerosos libros y películas, una sombra que persigue la historia de Londres.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_es_007.wav"
},
{
"index": 8,
"start": 90.64999999999999,
"end": 100.225,
"duration": 9.575,
"chapter_title": "El Misterio Sin Resolver",
"text": "Jack el Destripador sigue siendo uno de los misterios sin resolver más duraderos en la historia. Su identidad, si alguna vez se conoció, nunca fue revelada.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_es_008.wav"
},
{
"index": 9,
"start": 100.225,
"end": 108.35,
"duration": 8.125,
"chapter_title": "El Escape de Jack el Destripador",
"text": "Jack el Destripador escapó de la justicia, dejando tras de sí una legado de miedo y un misterio que continúa atrapando al mundo.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891137_Who_was_Jack_the_Ripper/tts_es_009.wav"
}
],
"clips": {
"en": [
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_en_000.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_en_001.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_en_002.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_en_003.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_en_004.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_en_005.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_en_006.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_en_007.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_en_008.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_en_009.mp4"
],
"es": [
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_es_000.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_es_001.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_es_002.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_es_003.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_es_004.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_es_005.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_es_006.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_es_007.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_es_008.mp4",
"./temp/1786891137_Who_was_Jack_the_Ripper/clips/clip_es_009.mp4"
]
},
"files": {
"en": "./output/1786891137_Who_was_Jack_the_Ripper_en.mp4",
"es": "./output/1786891137_Who_was_Jack_the_Ripper_es.mp4"
},
"subtitles": {
"en": "./output/1786891137_Who_was_Jack_the_Ripper_subtitles_en.srt",
"es": "./output/1786891137_Who_was_Jack_the_Ripper_subtitles_es.srt"
},
"thumbnails": {
"en": [
"./output/1786891137_Who_was_Jack_the_Ripper_thumb_A_en.png",
"./output/1786891137_Who_was_Jack_the_Ripper_thumb_B_en.png",
"./output/1786891137_Who_was_Jack_the_Ripper_thumb_C_en.png"
],
"es": [
"./output/1786891137_Who_was_Jack_the_Ripper_thumb_A_es.png",
"./output/1786891137_Who_was_Jack_the_Ripper_thumb_B_es.png",
"./output/1786891137_Who_was_Jack_the_Ripper_thumb_C_es.png"
],
"clean": [
"./output/1786891137_Who_was_Jack_the_Ripper_thumb_A_clean.png",
"./output/1786891137_Who_was_Jack_the_Ripper_thumb_B_clean.png",
"./output/1786891137_Who_was_Jack_the_Ripper_thumb_C_clean.png"
]
},
"timings": {
"SCRIPT": 275.4,
"TTS:EN": 41.6,
"TTS:ES": 45.9,
"MUSIC": 1.9,
"VISUAL": 1404.1,
"SUBS:EN": 14.1,
"SUBS:ES": 18.9,
"THUMBNAILS": 60.7,
"ASSEMBLY": 116.2
},
"created_at": 1786893116.3643885
}

View file

@ -0,0 +1,164 @@
1
00:00:00,000 --> 00:00:02,880
In 1888, the white tecapel district
2
00:00:02,880 --> 00:00:04,840
of London was terrorized by a
3
00:00:04,840 --> 00:00:07,060
mysterious figure known as Jack the
4
00:00:07,060 --> 00:00:09,600
Ripper. Five women were brutally murdered
5
00:00:09,600 --> 00:00:11,640
in a matter of weeks. The
6
00:00:11,640 --> 00:00:13,920
victims were all sex workers, brutally
7
00:00:13,920 --> 00:00:16,360
mutilated, their bodies found in alleys
8
00:00:16,360 --> 00:00:18,680
and backyards. The case was dubbed
9
00:00:18,680 --> 00:00:21,500
the white tecapel murders. Scores of
10
00:00:21,500 --> 00:00:24,840
suspects were investigated, including immigrants, doctors,
11
00:00:25,180 --> 00:00:27,060
and even a famous doctor, Dr.
12
00:00:27,280 --> 00:00:29,360
William H. Palmer. Each was a
13
00:00:29,360 --> 00:00:31,620
potential candidate, but all were eventually
14
00:00:31,620 --> 00:00:34,300
cleared. The killer left two chilling
15
00:00:34,300 --> 00:00:36,300
letters, one to the central news,
16
00:00:36,600 --> 00:00:37,960
and another to the white tecapel
17
00:00:37,960 --> 00:00:40,960
vigilance committee. They contained warnings and
18
00:00:40,960 --> 00:00:43,980
taunts, but no concrete evidence. The
19
00:00:43,980 --> 00:00:47,040
Metropolitan Police, led by Inspector Abberline,
20
00:00:47,500 --> 00:00:50,420
conducted a meticulous investigation. But the
21
00:00:50,420 --> 00:00:52,140
clues were few and the suspects
22
00:00:52,140 --> 00:00:54,880
many. Theories about Jack the Ripper
23
00:00:54,880 --> 00:00:56,640
range from a doctor to a
24
00:00:56,640 --> 00:00:58,760
woman to even a supernatural entity.
25
00:00:59,360 --> 00:01:01,240
Nothing has been proven and the
26
00:01:01,240 --> 00:01:04,520
case remains open. Despite extensive searches,
27
00:01:05,020 --> 00:01:07,520
no conclusive evidence was found. The
28
00:01:07,520 --> 00:01:09,680
Ripper's signature was never matched and
29
00:01:09,680 --> 00:01:11,900
the case went cold. Jack the
30
00:01:11,900 --> 00:01:13,460
Ripper has become a symbol of
31
00:01:13,460 --> 00:01:16,300
fear and fascination. His name has
32
00:01:16,300 --> 00:01:18,000
been the subject of countless books
33
00:01:18,000 --> 00:01:20,060
and films, a shadow that haunts
34
00:01:20,060 --> 00:01:22,360
the history of London. Jack the
35
00:01:22,360 --> 00:01:23,740
Ripper remains one of the most
36
00:01:23,740 --> 00:01:26,900
enduring unsolved mysteries in history. His
37
00:01:26,900 --> 00:01:29,340
identity, if ever known, has never
38
00:01:29,340 --> 00:01:31,920
been revealed. Jack the Ripper escaped
39
00:01:31,920 --> 00:01:34,480
justice, leaving behind a legacy of
40
00:01:34,480 --> 00:01:36,420
fear and a mystery that continues
41
00:01:36,420 --> 00:01:37,680
to captivate the world.

View file

@ -0,0 +1,180 @@
1
00:00:00,000 --> 00:00:02,820
En 1888, el distrito de whitecapele
2
00:00:02,820 --> 00:00:05,160
en Londres, Fuea Salado, por unificiero
3
00:00:05,160 --> 00:00:07,260
misteriosa Canása de Camo, Jack L.
4
00:00:07,360 --> 00:00:10,740
Distribidor. Cinco Mujer's Fioran Brutalment asesinadas,
5
00:00:11,100 --> 00:00:12,900
N .A. Pina's Yunas Semanas. Las
6
00:00:12,900 --> 00:00:15,960
víctimas iran totes trabigeras sexuales, mutiladas
7
00:00:15,960 --> 00:00:18,300
de manera brutal, suscupos furan en
8
00:00:18,300 --> 00:00:21,420
contratos y callejones y patiostraseros. El
9
00:00:21,420 --> 00:00:23,980
Caso Sicanosio Camo, los asesinatos de
10
00:00:23,980 --> 00:00:26,220
whitecapele. Si investigar en Tos de
11
00:00:26,220 --> 00:00:29,420
Suspechosos, inclayendo en migrantes, Madeco's White
12
00:00:29,420 --> 00:00:31,800
Haistron Famoso Doctor, Dr. William H.
13
00:00:31,960 --> 00:00:34,180
Palmer. Cada uno era en Candidato
14
00:00:34,180 --> 00:00:37,620
Potential, Piro toduz Fioran eventualmente discartados.
15
00:00:38,100 --> 00:00:39,600
El asesino de Joe Duz Cartas
16
00:00:39,600 --> 00:00:42,140
espelas nantes, Yunas Central News, White
17
00:00:42,140 --> 00:00:44,700
Otra Elacomision de Vigiláncia de Whitecapele.
18
00:00:45,100 --> 00:00:47,820
Continian advertencias y disafios, Piro no
19
00:00:47,820 --> 00:00:50,940
evidente concreta. La Policia Metropolitana, la
20
00:00:50,940 --> 00:00:53,040
hidrada por el Inspector Abberline, Livo
21
00:00:53,040 --> 00:00:56,500
Acaboyuna Investigación Minuciosa, Piro las Pistas
22
00:00:56,500 --> 00:00:59,080
Irán Pocas y Los Suspechosos Muchos.
23
00:00:59,480 --> 00:01:01,500
Las teorias Saber Jack, El Distributor
24
00:01:01,500 --> 00:01:03,260
Vendiz de Un Médico, Haste Una
25
00:01:03,260 --> 00:01:05,800
Mujer, Incluso Haste Una, Entidad Saber
26
00:01:05,800 --> 00:01:08,500
Natural. Nada ha sido probado while
27
00:01:08,500 --> 00:01:10,900
Caso Permins Abberdo. Apesar de las
28
00:01:10,900 --> 00:01:13,840
exhaustivas investigaciones, no se incontro evidente
29
00:01:13,840 --> 00:01:16,200
con cliente. El Celo del asesino
30
00:01:16,200 --> 00:01:18,840
nunca fue identificado while Caso Cienfrio.
31
00:01:19,360 --> 00:01:21,220
Jack el Distributor se ha convertido
32
00:01:21,220 --> 00:01:22,900
en un símbolo de Mido, why
33
00:01:22,900 --> 00:01:25,440
fascinación. Su nombre ha sido el
34
00:01:25,440 --> 00:01:27,880
tema de numerosos libros y películas,
35
00:01:28,080 --> 00:01:29,740
un asombre que perseguió la historia
36
00:01:29,740 --> 00:01:31,640
de los lindos. Jack el Distributor
37
00:01:31,640 --> 00:01:33,020
Sigue sin de uno de los
38
00:01:33,020 --> 00:01:35,240
misterios, sin resolver más de los
39
00:01:35,240 --> 00:01:37,460
raderos y la historia. Su identidad
40
00:01:37,460 --> 00:01:39,240
sea alguna vez si canócio nunca
41
00:01:39,240 --> 00:01:41,840
fue revelada. Jack el Distributor escapó
42
00:01:41,840 --> 00:01:43,660
de la justicia, de Gendo Tras,
43
00:01:43,760 --> 00:01:45,000
de si un alegado de Mido,
44
00:01:45,380 --> 00:01:47,460
why un misterio que continúa atrapando
45
00:01:47,460 --> 00:01:47,980
al mundo.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

View file

@ -0,0 +1,35 @@
============================================================
YOUTUBE UPLOAD BUNDLE — ENGLISH (Topic: Who was Jack the Ripper, who did he kill, and why was he never caught?)
============================================================
TITLES FOR A/B TESTING:
A. Jack the Ripper: The Unsolved Mystery
B. Who Was the Real Jack the Ripper?
C. Jack the Ripper: Why Was He Never Caught?
DESCRIPTION & CHAPTERS:
Jack the Ripper remains one of history's most notorious and enigmatic serial killers. Join us on a chilling journey through the fog-drenched streets of Victorian London, uncovering the stories behind the murders, the suspects, and the enduring mystery. #Documentary #History #JackTheRipper
TIMESTAMPS / CHAPTERS:
00:00 - The Murders
00:11 - The Victims
00:20 - The Suspects
00:32 - The Letters
00:43 - The Investigation
00:53 - Theories
01:02 - The Evidence
01:11 - The Legacy
01:21 - The Unsolved Mystery
01:30 - The Ripper's Escape
#Documentary #History #Science
TAGS:
documentary, history, jack the ripper, serial killer, crime, victorian england, unsolved mystery, police investigation, forensic science, mystery, true crime, urban legend, police records, 19th century
VIDEO FILE: ./output/1786891137_Who_was_Jack_the_Ripper_en.mp4
SUBTITLES: ./output/1786891137_Who_was_Jack_the_Ripper_subtitles_en.srt
THUMBNAILS:
- ./output/1786891137_Who_was_Jack_the_Ripper_thumb_A_en.png
- ./output/1786891137_Who_was_Jack_the_Ripper_thumb_B_en.png
- ./output/1786891137_Who_was_Jack_the_Ripper_thumb_C_en.png

View file

@ -0,0 +1,35 @@
============================================================
PAQUETE DE SUBIDA A YOUTUBE — ESPAÑOL (Tema: Who was Jack the Ripper, who did he kill, and why was he never caught?)
============================================================
TÍTULOS PARA PRUEBA A/B:
A. Jack el Destripador: El Misterio Sin Resolver
B. ¿Quién Fue el Real Jack el Destripador?
C. Jack el Destripador: ¿Por Qué Nunca Fue Capturado?
DESCRIPCIÓN Y CAPÍTULOS:
Jack el Destripador sigue siendo uno de los asesinos más notables y enigmáticos de la historia. Únete a nosotros en un viaje inquietante por las calles neblinosas de Londres victoriana, descubriendo las historias detrás de los asesinatos, los sospechosos y el misterio que permanece intacto. #Documental #Historia #JackElDestripador
CAPÍTULOS:
00:00 - Los Asesinatos
00:12 - Las Víctimas
00:24 - Los Sospechosos
00:37 - Las Cartas
00:49 - La Investigación
00:59 - Las Teorías
01:10 - La Evidencia
01:19 - El Legado
01:30 - El Misterio Sin Resolver
01:40 - El Escape de Jack el Destripador
#Documental #Historia #Ciencia
ETIQUETAS / TAGS:
documentary, history, jack the ripper, serial killer, crime, victorian england, unsolved mystery, police investigation, forensic science, mystery, true crime, urban legend, police records, 19th century
ARCHIVO DE VIDEO: ./output/1786891137_Who_was_Jack_the_Ripper_es.mp4
SUBTÍTULOS: ./output/1786891137_Who_was_Jack_the_Ripper_subtitles_es.srt
MINIATURAS:
- ./output/1786891137_Who_was_Jack_the_Ripper_thumb_A_es.png
- ./output/1786891137_Who_was_Jack_the_Ripper_thumb_B_es.png
- ./output/1786891137_Who_was_Jack_the_Ripper_thumb_C_es.png

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,159 @@
{
"job_id": "1786891437_The_Lost_Library_of_Alexa",
"topic": "The Lost Library of Alexandria",
"titles": [
"The Forgotten Knowledge of Alexandria",
"Uncovering the Lost Library",
"Alexandria's Timeless Secrets"
],
"titles_es": [
"El Olvidado Conocimiento de Alejandría",
"Descubriendo la Perdida Biblioteca",
"Secretos Eternos de Alejandría"
],
"description": "Dive into the mysterious history of the lost Library of Alexandria, one of the greatest knowledge centers of antiquity. Discover the treasures, tragedies, and enduring legacy of this ancient wonder. #Documentary #History #Science\n\nTIMESTAMPS / CHAPTERS:\n00:00 - The Ancient Mystery\n00:15 - The Critical Discovery\n00:30 - The Great Library's Last Chapter\n00:45 - Uncovering the Lost Library\n\n#Documentary #History #Science",
"description_es": "Sumérgete en la historia misteriosa de la Biblioteca de Alejandría, una de las mayores centrales de conocimientos de la antigüedad. Descubre las tesoros, tragedias y legado eterno de esta antigua maravilla. #Documentario #Historia #Ciencia\n\nCAPÍTULOS:\n00:00 - El Misterio Antiguo\n00:18 - La Descubierta Crítica\n00:34 - El Último Capítulo de la Gran Biblioteca\n00:52 - Descubriendo la Perdida Biblioteca\n\n#Documental #Historia #Ciencia",
"tags": [
"ancient history",
"lost library",
"alexandria",
"knowledge center",
"bce",
"bce history",
"ancient library",
"egypt",
"mediterranean",
"library of alexandria",
"university",
"ancient books",
"ancient knowledge",
"lost knowledge"
],
"chapters_en": [
{
"index": 0,
"start": 0.0,
"end": 15.975,
"duration": 15.975,
"chapter_title": "The Ancient Mystery",
"text": "Amidst the bustling harbor of Alexandria, stood a beacon of learning, the great Library. Founded in 300 BCE, it was a hub of intellectual brilliance, housing over half a million scrolls. Tragically, it burned, but its legacy endured.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891437_The_Lost_Library_of_Alexa/tts_en_000.wav"
},
{
"index": 1,
"start": 15.975,
"end": 30.25,
"duration": 14.275,
"chapter_title": "The Critical Discovery",
"text": "In 1906, a German archaeologist discovered papyrus fragments in the ruins of the library. These remnants offered glimpses of the vast collection. But the full extent of its loss and treasures remained a mystery.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891437_The_Lost_Library_of_Alexa/tts_en_001.wav"
},
{
"index": 2,
"start": 30.25,
"end": 45.8,
"duration": 15.55,
"chapter_title": "The Great Library's Last Chapter",
"text": "Despite the fire and subsequent invasions, the Library's influence persisted. Its scholars, like Eratosthenes, made groundbreaking discoveries in science and philosophy. Today, the site remains a symbol of the power of knowledge.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891437_The_Lost_Library_of_Alexa/tts_en_002.wav"
},
{
"index": 3,
"start": 45.8,
"end": 58.9,
"duration": 13.1,
"chapter_title": "Uncovering the Lost Library",
"text": "Join us on this journey to uncover the secrets of the lost Library of Alexandria. From its rise to its fall, explore the enduring legacy of this intellectual treasure. The quest for knowledge continues.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891437_The_Lost_Library_of_Alexa/tts_en_003.wav"
}
],
"chapters_es": [
{
"index": 0,
"start": 0.0,
"end": 18.48,
"duration": 18.48,
"chapter_title": "El Misterio Antiguo",
"text": "En el bullicioso puerto de Alejandría, se alzaba un faro del saber, la gran Biblioteca. Fundada en el 300 a.C., era un centro de brillante intelecto, alojando más de medio millón de rollos. Trágicamente, se incendió, pero su legado sobrevivió.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891437_The_Lost_Library_of_Alexa/tts_es_000.wav"
},
{
"index": 1,
"start": 18.48,
"end": 34.70401360544218,
"duration": 16.224013605442178,
"chapter_title": "La Descubierta Crítica",
"text": "En 1906, un arqueólogo alemán descubrió fragmentos de papiro en los ruinosos restos de la biblioteca. Estos restos ofrecían vislumbres de la vasta colección. Pero el alcance completo de su pérdida y tesoro permanecieron en el misterio.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891437_The_Lost_Library_of_Alexa/tts_es_001.wav"
},
{
"index": 2,
"start": 34.70401360544218,
"end": 52.824013605442175,
"duration": 18.12,
"chapter_title": "El Último Capítulo de la Gran Biblioteca",
"text": "A pesar del incendio y las posteriores invasiones, la influencia de la Biblioteca persistió. Sus eruditos, como Eratóstenes, realizaron descubrimientos revolucionarios en ciencia y filosofía. Hoy en día, el sitio sigue siendo un símbolo del poder del conocimiento.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891437_The_Lost_Library_of_Alexa/tts_es_002.wav"
},
{
"index": 3,
"start": 52.824013605442175,
"end": 67.72802721088435,
"duration": 14.904013605442177,
"chapter_title": "Descubriendo la Perdida Biblioteca",
"text": "Únete a nosotros en esta jornada para descubrir los secretos de la Biblioteca de Alejandría perdida. Desde su ascenso hasta su caída, explora el legado duradero de este tesoro intelectual. La búsqueda del conocimiento continúa.",
"wav_file": "/home/mark/Projects/GeminiVideoPipeline/temp/1786891437_The_Lost_Library_of_Alexa/tts_es_003.wav"
}
],
"clips": {
"en": [
"./temp/1786891437_The_Lost_Library_of_Alexa/clips/clip_000.mp4",
"./temp/1786891437_The_Lost_Library_of_Alexa/clips/clip_001.mp4",
"./temp/1786891437_The_Lost_Library_of_Alexa/clips/clip_002.mp4",
"./temp/1786891437_The_Lost_Library_of_Alexa/clips/clip_003.mp4"
],
"es": [
"./temp/1786891437_The_Lost_Library_of_Alexa/clips/clip_000.mp4",
"./temp/1786891437_The_Lost_Library_of_Alexa/clips/clip_001.mp4",
"./temp/1786891437_The_Lost_Library_of_Alexa/clips/clip_002.mp4",
"./temp/1786891437_The_Lost_Library_of_Alexa/clips/clip_003.mp4"
]
},
"files": {
"en": "./output/1786891437_The_Lost_Library_of_Alexa_en.mp4",
"es": "./output/1786891437_The_Lost_Library_of_Alexa_es.mp4"
},
"subtitles": {
"en": "./output/1786891437_The_Lost_Library_of_Alexa_subtitles_en.srt",
"es": "./output/1786891437_The_Lost_Library_of_Alexa_subtitles_es.srt"
},
"thumbnails": {
"en": [
"./output/1786891437_The_Lost_Library_of_Alexa_thumb_A_en.png",
"./output/1786891437_The_Lost_Library_of_Alexa_thumb_B_en.png",
"./output/1786891437_The_Lost_Library_of_Alexa_thumb_C_en.png"
],
"es": [
"./output/1786891437_The_Lost_Library_of_Alexa_thumb_A_es.png",
"./output/1786891437_The_Lost_Library_of_Alexa_thumb_B_es.png",
"./output/1786891437_The_Lost_Library_of_Alexa_thumb_C_es.png"
],
"clean": [
"./output/1786891437_The_Lost_Library_of_Alexa_thumb_A_clean.png",
"./output/1786891437_The_Lost_Library_of_Alexa_thumb_B_clean.png",
"./output/1786891437_The_Lost_Library_of_Alexa_thumb_C_clean.png"
]
},
"timings": {
"SCRIPT": 115.1,
"TTS:EN": 27.3,
"TTS:ES": 5.4,
"MUSIC": 1.0,
"VISUAL": 1176.8,
"SUBS:EN": 11.0,
"SUBS:ES": 11.9,
"THUMBNAILS": 185.9,
"ASSEMBLY": 62.3
},
"created_at": 1786893034.729872
}

View file

@ -0,0 +1,96 @@
1
00:00:00,000 --> 00:00:02,280
Amidst the bustling harbor of Alexandria
2
00:00:02,280 --> 00:00:04,380
stood a beacon of learning, the
3
00:00:04,380 --> 00:00:07,220
Great Library. Founded in 300 BCE,
4
00:00:07,800 --> 00:00:09,060
it was a hub of intellectual
5
00:00:09,060 --> 00:00:11,500
brilliance, housing over half a million
6
00:00:11,500 --> 00:00:14,420
scrolls. Tragically, it burned, but its
7
00:00:14,420 --> 00:00:17,120
legacy endured. In 1906,
8
00:00:17,660 --> 00:00:20,480
a German archaeologist discovered papyrus fragments
9
00:00:20,480 --> 00:00:22,100
in the ruins of the library.
10
00:00:22,660 --> 00:00:24,900
These remnants offered glimpses of the
11
00:00:24,900 --> 00:00:27,200
vast collection, but the full extent
12
00:00:27,200 --> 00:00:29,040
of its loss and treasures remained
13
00:00:29,040 --> 00:00:31,700
a mystery. Despite the fire and
14
00:00:31,700 --> 00:00:35,200
subsequent invasions, the library's influence persisted.
15
00:00:35,720 --> 00:00:38,840
Its scholars, like Aratosthenes, made groundbreaking
16
00:00:38,840 --> 00:00:42,180
discoveries in science and philosophy. Today,
17
00:00:42,600 --> 00:00:44,220
the site remains a symbol of
18
00:00:44,220 --> 00:00:46,480
the power of knowledge. Join us
19
00:00:46,480 --> 00:00:48,080
on this journey to uncover the
20
00:00:48,080 --> 00:00:49,920
secrets of the lost library of
21
00:00:49,920 --> 00:00:52,300
Alexandria. From its rise to its
22
00:00:52,300 --> 00:00:54,780
fall, explore the enduring legacy of
23
00:00:54,780 --> 00:00:57,160
this intellectual treasure. The quest for
24
00:00:57,160 --> 00:00:58,120
knowledge continues.

View file

@ -0,0 +1,104 @@
1
00:00:00,000 --> 00:00:02,120
En el bujicioso puerto de Alejandría,
2
00:00:02,580 --> 00:00:03,820
se alzaba un faro del saber,
3
00:00:04,280 --> 00:00:06,940
la Gran Biblioteca. Fundada en el
4
00:00:06,940 --> 00:00:09,080
300 antes de Cristo, era un
5
00:00:09,080 --> 00:00:11,660
centro de brillante intelecto, alojando más
6
00:00:11,660 --> 00:00:14,840
de medio millón de rollos. Trágicamente,
7
00:00:15,200 --> 00:00:17,520
se incendió, pero su legado sobrevivió.
8
00:00:18,580 --> 00:00:21,820
En 1906, un arqueólogo alemán descubrió
9
00:00:21,820 --> 00:00:23,580
fragmentos de papiro en los rinosos
10
00:00:23,580 --> 00:00:26,560
restos de la Biblioteca. Estos restos
11
00:00:26,560 --> 00:00:28,740
ofrecían bislumbres de la vasta colección.
12
00:00:28,740 --> 00:00:31,680
Pero el alcance completo de superdida
13
00:00:31,680 --> 00:00:33,820
y tesoro permanecieron en el misterio.
14
00:00:34,860 --> 00:00:36,260
A pesar del incendio y las
15
00:00:36,260 --> 00:00:38,720
posteriores invasiones, la influencia de la
16
00:00:38,720 --> 00:00:41,660
Biblioteca persistió. Sus eruditos,
17
00:00:41,960 --> 00:00:45,280
como Heratóstenes, realizaron descubrimientos revolucionarios
18
00:00:45,280 --> 00:00:48,160
en ciencia y filosofía. Hoy en
19
00:00:48,160 --> 00:00:50,100
día, el sitio sigue siendo un
20
00:00:50,100 --> 00:00:53,280
símbolo del poder del conocimiento. Unete
21
00:00:53,280 --> 00:00:54,880
a nosotros en esta jornada para
22
00:00:54,880 --> 00:00:56,840
descubrir los secretos de la Biblioteca
23
00:00:56,840 --> 00:00:59,880
de Alejandría perdida. Desde su ascenso
24
00:00:59,880 --> 00:01:01,900
hasta su caída, explora el legado
25
00:01:01,900 --> 00:01:04,980
duradero de este tesoro intelectual. La
26
00:01:04,980 --> 00:01:06,800
búsqueda del conocimiento continúa.

Binary file not shown.

After

Width:  |  Height:  |  Size: 905 KiB

Some files were not shown because too many files have changed in this diff Show more