File size: 13,898 Bytes
8065778 | 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 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 | results.txt story_app.py ~ $ nano story_app.py
~ $ cat story_app.py import requests
import os
# 1. SETUP - Replace 'YOUR_TOKEN_HERE' with your real Hugging Face token
API_URL = "https://api-inference.huggingface.co/models/black-forest-labs/FLUX.1-schnell"
headers = {"Authorization": "Bearer YOUR_TOKEN_HERE"}
def generate_video_from_story():
# 2. THE STORY INPUT
print("\n--- StoryViz AI ---")
story = input("Enter your story: ") print("π¨ AI is drawing your story... please wait.")
# 3. GENERATE THE IMAGE
response = requests.post(API_URL, headers=headers, json={"inputs": story})
if response.status_code == 200:
with open("scene.jpg", "wb") as f:
f.write(response.content)
print("β
Image generated!")
# 4. TURN IMAGE INTO VIDEO (Using ffmpeg)
print("π¬ Converting image to a 5-second video...")
os.system("ffmpeg -loop 1 -i scene.jpg -c:v libx264 -t 5 -pix_fmt yuv420p story_video.mp4 -y")
print("\nπ SUCCESS! Your video is saved as: story_video.mp4")
else:
print(f"β Error: {response.status_code}. Check your Token!")
if __name__ == "__main__":
generate_video_from_story()
tus_code == 200:
with open("scene.jpg", "wb") as f:
f.write(response.content)
print("β
Image generated!")
# 4. TURN IMAGE INTO VIDEO (Using ffmpeg)
print("π¬ Converting image to a 5-second video...")
# This command takes the image and loops it for 5 seconds
os.system("ffmpeg -loop 1 -i scene.jpg -c:v libx264 -t 5 -pix_fmt yuv420p story_video.mp4 -y")
print("\nπ SUCCESS! Your video is saved as: story_video.mp4")
print("To view it, move it to your phone storage using:")
print("termux-setup-storage && cp story_video.mp4 /sdcard/")
else:
print("β Error: AI is busy or Token is wrong.")
generate_video_from_story()
The program import is not installed. Install it by executing:
pkg install imagemagick
~ $ import os
The program import is not installed. Install it by executing:
pkg install imagemagick
~ $ import time
The program import is not installed. Install it by executing:
pkg install imagemagick
~ $
~ $ # 1. SETUP
~ $ API_URL = "https://api-inference.huggingface.co/models/black-forest-labs/FLUX.1-schnell"
API_URL: command not found
~ $ headers = {"Authorization": "Bearer YOUR_TOKEN_HERE"}
No command headers found, did you mean:
Command feathers in package chicken
Command head in package coreutils
Command heimer in package heimer from the x11-repo repository
Command hexer in package hexer
Command readelf in package llvm
Command folders in package mailutils
Command gears in package mesa-demos from the x11-repo repository
Command folders in package nmh
Command sneakers in package no-more-secrets
~ $
~ $ def generate_video_from_story():
bash: syntax error near unexpected token `('
~ $ # 2. THE STORY INPUT
~ $ story = input("Enter your story: ")
bash: syntax error near unexpected token `('
~ $ print("π¨ AI is drawing your story...")
bash: syntax error near unexpected token `"π¨ AI is drawing your story..."'
~ $
~ $ # 3. GENERATE THE IMAGE
~ $ response = requests.post(API_URL, headers=headers, json={"inputs": story})
bash: syntax error near unexpected token `('
~ $
~ $ if response.status_code == 200:
> with open("scene.jpg", "wb") as f:
bash: syntax error near unexpected token `('
~ $ f.write(response.content)
bash: syntax error near unexpected token `response.content'
~ $ print("β
Image generated!")
bash: syntax error near unexpected token `"β
Image generated!"'
~ $
~ $ # 4. TURN IMAGE INTO VIDEO (Using ffmpeg)
~ $ print("π¬ Converting image to a 5-second video...")
bash: syntax error near unexpected token `"π¬ Converting image to a 5-second video..."'
~ $ # This command takes the image and loops it for 5 seconds
~ $ os.system("ffmpeg -loop 1 -i scene.jpg -c:v libx264 -t 5 -pix_fmt yuv420p story_video.mp4 -y")
bash: syntax error near unexpected token `"ffmpeg -loop 1 -i scene.jpg -c:v libx264 -t 5 -pix_fmt yuv420p story_video.mp4 -y"'
~ $
~ $ print("\nπ SUCCESS! Your video is saved as: story_video.mp4")
bash: syntax error near unexpected token `"\nπ SUCCESS! Your video is saved as: story_video.mp4"'
~ $ print("To view it, move it to your phone storage using:")
bash: syntax error near unexpected token `"To view it, move it to your phone storage using:"'
~ $ print("termux-setup-storage && cp story_video.mp4 /sdcard/")
bash: syntax error near unexpected token `"termux-setup-storage && cp story_video.mp4 /sdcard/"'
~ $ else:
No command else: found, did you mean:
Command plser in package libgnustep-base
~ $ print("β Error: AI is busy or Token is wrong.")
bash: syntax error near unexpected token `"β Error: AI is busy or Token is wrong."'
~ $
~ $ generate_video_from_story()import requests
import os
import time
# 1. SETUP
API_URL = "https://api-inference.huggingface.co/models/black-forest-labs/FLUX.1-schnell"
headers = {"Authorization": "Bearer YOUR_TOKEN_HERE"}
def generate_video_from_story():
# 2. THE STORY INPUT
story = input("Enter your story: ")
print("π¨ AI is drawing your story...")
# 3. GENERATE THE IMAGE
response = requests.post(API_URL, headers=headers, json={"inputs": story})
if response.status_code == 200:
with open("scene.jpg", "wb") as f:
f.write(response.content)
print("β
Image generated!")
# 4. TURN IMAGE INTO VIDEO (Using ffmpeg)
print("π¬ Converting image to a 5-second video...")
# This command takes the image and loops it for 5 seconds
os.system("ffmpeg -loop 1 -i scene.jpg -c:v libx264 -t 5 -pix_fmt yuv420p story_video.mp4 -y")
print("\nπ SUCCESS! Your video is saved as: story_video.mp4")
print("To view it, move it to your phone storage using:")
print("termux-setup-storage && cp story_video.mp4 /sdcard/")
else:
print("β Error: AI is busy or Token is wrong.")
generate_video_from_story()
import os
from openai import OpenAI
client = OpenAI(
base_url="https://router.huggingface.co/v1",
api_key=os.environ["HF_TOKEN"],
)
completion = client.chat.completions.create(
model="moonshotai/Kimi-K2-Instruct-0905",
messages=[
{
"role": "user",
"content": "Generate a list of 10 interesting facts about space."
}
],
)
print(completion.choices[0].message)import os
from huggingface_hub import InferenceClient
client = InferenceClient(
provider="wavespeed",
api_key=os.environ["HF_TOKEN"],
)
# output is a PIL.Image object
image = client.text_to_image(
"A robot playing chess with a human",
model="black-forest-labs/FLUX.1-dev",
)
~ $ cat story_app.py
import requests
import os
# 1. SETUP - Replace 'YOUR_TOKEN_HERE' with your real Hugging Face token
API_URL = "https://api-inference.huggingface.co/models/black-forest-labs/FLUX.1-schnell"
headers = {"Authorization": "Bearer YOUR_TOKEN_HERE"}
def generate_video_from_story():
# 2. THE STORY INPUT
print("\n--- StoryViz AI ---")
story = input("Enter your story: ")
print("π¨ AI is drawing your story... please wait.")
# 3. GENERATE THE IMAGE
response = requests.post(API_URL, headers=headers, json={"inputs": story})
if response.status_code == 200:
with open("scene.jpg", "wb") as f:
f.write(response.content)
print("β
Image generated!")
# 4. TURN IMAGE INTO VIDEO (Using ffmpeg)
print("π¬ Converting image to a 5-second video...")
os.system("ffmpeg -loop 1 -i scene.jpg -c:v libx264 -t 5 -pix_fmt yuv420p story_video.mp4 -y")
print("\nπ SUCCESS! Your video is saved as: story_video.mp4")
else:
print(f"β Error: {response.status_code}. Check your Token!")
if __name__ == "__main__":
generate_video_from_story()
tus_code == 200:
with open("scene.jpg", "wb") as f:
f.write(response.content)
print("β
Image generated!")
# 4. TURN IMAGE INTO VIDEO (Using ffmpeg)
print("π¬ Converting image to a 5-second video...")
# This command takes the image and loops it for 5 seconds
os.system("ffmpeg -loop 1 -i scene.jpg -c:v libx264 -t 5 -pix_fmt yuv420p story_video.mp4 -y")
print("\nπ SUCCESS! Your video is saved as: story_video.mp4")
print("To view it, move it to your phone storage using:")
print("termux-setup-storage && cp story_video.mp4 /sdcard/")
else:
print("β Error: AI is busy or Token is wrong.")
generate_video_from_story()
The program import is not installed. Install it by executing:
pkg install imagemagick
~ $ import os
The program import is not installed. Install it by executing:
pkg install imagemagick
~ $ import time
The program import is not installed. Install it by executing:
pkg install imagemagick
~ $
~ $ # 1. SETUP
~ $ API_URL = "https://api-inference.huggingface.co/models/black-forest-labs/FLUX.1-schnell"
API_URL: command not found
~ $ headers = {"Authorization": "Bearer YOUR_TOKEN_HERE"}
No command headers found, did you mean:
Command feathers in package chicken
Command head in package coreutils
Command heimer in package heimer from the x11-repo repository
Command hexer in package hexer
Command readelf in package llvm
Command folders in package mailutils
Command gears in package mesa-demos from the x11-repo repository
Command folders in package nmh
Command sneakers in package no-more-secrets
~ $
~ $ def generate_video_from_story():
bash: syntax error near unexpected token `('
~ $ # 2. THE STORY INPUT
~ $ story = input("Enter your story: ")
bash: syntax error near unexpected token `('
~ $ print("π¨ AI is drawing your story...")
bash: syntax error near unexpected token `"π¨ AI is drawing your story..."'
~ $
~ $ # 3. GENERATE THE IMAGE
~ $ response = requests.post(API_URL, headers=headers, json={"inputs": story})
bash: syntax error near unexpected token `('
~ $
~ $ if response.status_code == 200:
> with open("scene.jpg", "wb") as f:
bash: syntax error near unexpected token `('
~ $ f.write(response.content)
bash: syntax error near unexpected token `response.content'
~ $ print("β
Image generated!")
bash: syntax error near unexpected token `"β
Image generated!"'
~ $
~ $ # 4. TURN IMAGE INTO VIDEO (Using ffmpeg)
~ $ print("π¬ Converting image to a 5-second video...")
bash: syntax error near unexpected token `"π¬ Converting image to a 5-second video..."'
~ $ # This command takes the image and loops it for 5 seconds
~ $ os.system("ffmpeg -loop 1 -i scene.jpg -c:v libx264 -t 5 -pix_fmt yuv420p story_video.mp4 -y")
bash: syntax error near unexpected token `"ffmpeg -loop 1 -i scene.jpg -c:v libx264 -t 5 -pix_fmt yuv420p story_video.mp4 -y"'
~ $
~ $ print("\nπ SUCCESS! Your video is saved as: story_video.mp4")
bash: syntax error near unexpected token `"\nπ SUCCESS! Your video is saved as: story_video.mp4"'
~ $ print("To view it, move it to your phone storage using:")
bash: syntax error near unexpected token `"To view it, move it to your phone storage using:"'
~ $ print("termux-setup-storage && cp story_video.mp4 /sdcard/")
bash: syntax error near unexpected token `"termux-setup-storage && cp story_video.mp4 /sdcard/"'
~ $ else:
No command else: found, did you mean:
Command plser in package libgnustep-base
~ $ print("β Error: AI is busy or Token is wrong.")
bash: syntax error near unexpected token `"β Error: AI is busy or Token is wrong."'
~ $
~ $ generate_video_from_story()import requests
import os
import time
# 1. SETUP
API_URL = "https://api-inference.huggingface.co/models/black-forest-labs/FLUX.1-schnell"
headers = {"Authorization": "Bearer YOUR_TOKEN_HERE"}
def generate_video_from_story():
# 2. THE STORY INPUT
story = input("Enter your story: ")
print("π¨ AI is drawing your story...")
# 3. GENERATE THE IMAGE
response = requests.post(API_URL, headers=headers, json={"inputs": story})
if response.status_code == 200:
with open("scene.jpg", "wb") as f:
f.write(response.content)
print("β
Image generated!")
# 4. TURN IMAGE INTO VIDEO (Using ffmpeg)
print("π¬ Converting image to a 5-second video...")
# This command takes the image and loops it for 5 seconds
os.system("ffmpeg -loop 1 -i scene.jpg -c:v libx264 -t 5 -pix_fmt yuv420p story_video.mp4 -y")
print("\nπ SUCCESS! Your video is saved as: story_video.mp4")
print("To view it, move it to your phone storage using:")
print("termux-setup-storage && cp story_video.mp4 /sdcard/")
else:
print("β Error: AI is busy or Token is wrong.")
generate_video_from_story()
import os
from openai import OpenAI
client = OpenAI(
base_url="https://router.huggingface.co/v1",
api_key=os.environ["HF_TOKEN"],
)
completion = client.chat.completions.create(
model="moonshotai/Kimi-K2-Instruct-0905",
messages=[
{
"role": "user",
"content": "Generate a list of 10 interesting facts about space."
}
],
)
print(completion.choices[0].message)import os
from huggingface_hub import InferenceClient
client = InferenceClient(
provider="wavespeed",
api_key=os.environ["HF_TOKEN"],
)
# output is a PIL.Image object
image = client.text_to_image(
"A robot playing chess with a human",
model="black-forest-labs/FLUX.1-dev",
) |