File size: 5,291 Bytes
1425afc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | """
variations.py
---------------------------------------
Hook & Script Variation Engine (V8)
Purpose:
- Generate multiple viral hooks
- Create alternative script directions
- Support A/B testing of edits
- Enable Multi-Version Render pipeline
Works fully CPU-only.
No external API required.
"""
import random
import hashlib
# =====================================================
# HOOK TEMPLATES (VIRAL PATTERNS)
# =====================================================
HOOK_PATTERNS = [
"You are not going to believe this...",
"This is what nobody tells you about {}",
"Stop scrolling if you want to understand {}",
"The truth about {} will shock you",
"Most people get {} wrong",
"If you understand this, your {} changes forever",
"I wish I knew this before about {}",
"This is how you actually win at {}",
"Everyone is lying about {}",
"Watch this before it's too late..."
]
# =====================================================
# TEXT CLEANER
# =====================================================
def extract_keywords(words):
"""
Extract simple keyword candidates from transcript
"""
freq = {}
for w in words:
word = w["word"].lower().strip()
if len(word) < 3:
continue
freq[word] = freq.get(word, 0) + 1
sorted_words = sorted(freq.items(), key=lambda x: x[1], reverse=True)
return [w[0] for w in sorted_words[:5]]
# =====================================================
# HOOK GENERATION
# =====================================================
def generate_hooks(words, count=5):
"""
Generate multiple viral hooks from transcript
"""
keywords = extract_keywords(words)
hooks = []
for i in range(count):
template = random.choice(HOOK_PATTERNS)
keyword = random.choice(keywords) if keywords else "this"
try:
hook = template.format(keyword)
except:
hook = template
hooks.append(hook)
return hooks
# =====================================================
# SCRIPT VARIATION ENGINE
# =====================================================
def generate_script_variations(words):
"""
Creates alternative narrative directions
"""
base_text = " ".join([w["word"] for w in words])
variations = []
variations.append({
"style": "direct",
"script": base_text
})
variations.append({
"style": "emotional",
"script": "Imagine this... " + base_text
})
variations.append({
"style": "urgent",
"script": "You need to hear this: " + base_text
})
variations.append({
"style": "story",
"script": "Let me tell you something important. " + base_text
})
return variations
# =====================================================
# CAPTION VARIATION ENGINE
# =====================================================
def generate_caption_variations(captions):
"""
Creates multiple caption styles for rendering
"""
styles = []
for c in captions:
styles.append({
"style": "bold_center",
"text": c["text"].upper()
})
styles.append({
"style": "minimal",
"text": c["text"]
})
styles.append({
"style": "emphasis_words",
"text": highlight_keywords(c["text"])
})
return styles
# =====================================================
# KEYWORD HIGHLIGHTER
# =====================================================
def highlight_keywords(text):
"""
Emphasizes strong words in captions
"""
keywords = ["you", "this", "stop", "now", "secret", "important"]
words = text.split()
output = []
for w in words:
if w.lower() in keywords:
output.append(w.upper())
else:
output.append(w)
return " ".join(output)
# =====================================================
# MULTI VERSION RENDER ENGINE
# =====================================================
def generate_render_variations(video_path, hooks=None):
"""
Creates multiple render variants metadata
(actual rendering happens in render.py)
"""
if not hooks:
hooks = ["Hook 1", "Hook 2", "Hook 3"]
outputs = []
for i, hook in enumerate(hooks):
outputs.append({
"version": i + 1,
"hook": hook,
"output_file": f"render_variant_{i+1}.mp4"
})
return outputs
# =====================================================
# DETERMINISTIC VIRAL HASH
# =====================================================
def viral_signature(text):
"""
Creates deterministic ID for A/B testing consistency
"""
return hashlib.md5(text.encode()).hexdigest()[:10]
# =====================================================
# PUBLIC API
# =====================================================
def generate_hooks_only(words):
return generate_hooks(words)
def generate_full_variations(words):
"""
Full pipeline for V8 Multi-Version system
"""
hooks = generate_hooks(words)
scripts = generate_script_variations(words)
return {
"hooks": hooks,
"scripts": scripts
} |