File size: 21,121 Bytes
730c60f a1d44af 730c60f 5f98112 2384964 5f98112 2384964 5f98112 730c60f 5f98112 730c60f 5f98112 2384964 5f98112 2384964 5f98112 730c60f 5f98112 730c60f 5f98112 2384964 5f98112 730c60f 5f98112 730c60f 5f98112 2384964 5f98112 2384964 5f98112 730c60f 5f98112 730c60f a1d44af 730c60f a1d44af 5f98112 a1d44af 730c60f 5f98112 730c60f 66dcb35 275d0aa 66dcb35 275d0aa 66dcb35 275d0aa 66dcb35 275d0aa 66dcb35 275d0aa 66dcb35 d535c7b 275d0aa 66dcb35 275d0aa 2384964 275d0aa 66dcb35 275d0aa d535c7b 275d0aa d535c7b 275d0aa 66dcb35 d535c7b 275d0aa ba83473 |
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 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 |
from fastapi import FastAPI, HTTPException, Request
from fastapi.staticfiles import StaticFiles
from concurrent.futures import ThreadPoolExecutor
import asyncio
import aiohttp
import tempfile
import uuid
import shutil
import os
import random
import traceback
import string
app = FastAPI()
def generate_hash(length=12):
# Characters that can appear in the hash
characters = string.ascii_lowercase + string.digits
# Generate a random string of the specified length
hash_string = ''.join(random.choice(characters) for _ in range(length))
return hash_string
@app.get("/")
async def read_root():
return {"message": "Saqib's API"}
# Create a directory to store MP3 files if it doesn't exist
AUDIO_DIR = "audio_files"
os.makedirs(AUDIO_DIR, exist_ok=True)
# Create a directory for storing output files
OUTPUT_DIR = "output"
os.makedirs(OUTPUT_DIR, exist_ok=True)
# Mount the audio directory
app.mount("/audio", StaticFiles(directory=AUDIO_DIR), name="audio")
# Mount the output directory
app.mount("/output", StaticFiles(directory=OUTPUT_DIR), name="output")
thread_pool = ThreadPoolExecutor(max_workers=2)
async def run_ffmpeg_async(ffmpeg_command):
loop = asyncio.get_running_loop()
await loop.run_in_executor(thread_pool, ffmpeg_command)
async def download_file(url: str, suffix: str):
async with aiohttp.ClientSession() as session:
async with session.get(url) as response:
if response.status != 200:
raise HTTPException(status_code=400, detail=f"Failed to download file from {url}")
with tempfile.NamedTemporaryFile(delete=False, suffix=suffix) as temp_file:
temp_file.write(await response.read())
return temp_file.name
@app.post("/add_audio_to_image")
async def add_audio_to_image(request: Request):
try:
# Generate a unique filename
output_filename = f"{uuid.uuid4()}.mp4"
output_path = os.path.join(OUTPUT_DIR, output_filename)
# Call the modal API with the request data and download the output file
data = await request.json()
image_url = data.get("image_url")
audio_url = data.get("audio_url")
if not image_url or not audio_url:
raise HTTPException(status_code=400, detail="Missing image_url or audio_url in request")
image_file = await download_file(image_url, ".jpg")
audio_file = await download_file(audio_url, ".mp3")
# Run ffmpeg command with improved audio detection parameters
ffmpeg_cmd = f"ffmpeg -loop 1 -i {image_file} -analyzeduration 10000000 -probesize 10000000 -i {audio_file} -c:v libx264 -tune stillimage -c:a aac -b:a 192k -strict experimental -shortest -pix_fmt yuv420p {output_path}"
process = await asyncio.create_subprocess_shell(
ffmpeg_cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE
)
_, stderr = await process.communicate()
if process.returncode != 0:
print(f"FFmpeg error: {stderr.decode()}")
raise HTTPException(status_code=500, detail=f"FFmpeg failed: {stderr.decode()}")
# Clean up temporary files
os.remove(image_file)
os.remove(audio_file)
# Return the URL path to the output file
return f"/output/{output_filename}"
except Exception as e:
print(f"An error occurred: {str(e)}")
print(traceback.format_exc())
raise HTTPException(status_code=500, detail=f"An unexpected error occurred: {str(e)}")
@app.post("/add_audio_to_video")
async def add_audio_to_video(request: Request):
try:
# Generate a unique filename
output_filename = f"{uuid.uuid4()}.mp4"
output_path = os.path.join(OUTPUT_DIR, output_filename)
# Call the modal API with the request data and download the output file
data = await request.json()
video_url = data.get("video_url")
audio_url = data.get("audio_url")
if not video_url or not audio_url:
raise HTTPException(status_code=400, detail="Missing video_url or audio_url in request")
video_file = await download_file(video_url, ".mp4")
audio_file = await download_file(audio_url, ".mp3")
# Run ffmpeg command with improved audio detection parameters
ffmpeg_cmd = f"ffmpeg -analyzeduration 10000000 -probesize 10000000 -i {video_file} -analyzeduration 10000000 -probesize 10000000 -i {audio_file} -c:v copy -c:a aac -strict experimental -shortest {output_path}"
process = await asyncio.create_subprocess_shell(
ffmpeg_cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE
)
_, stderr = await process.communicate()
if process.returncode != 0:
print(f"FFmpeg error: {stderr.decode()}")
raise HTTPException(status_code=500, detail=f"FFmpeg failed: {stderr.decode()}")
# Clean up temporary files
os.remove(video_file)
os.remove(audio_file)
# Return the URL path to the output file
return f"/output/{output_filename}"
except Exception as e:
print(f"An error occurred: {str(e)}")
print(traceback.format_exc())
raise HTTPException(status_code=500, detail=f"An unexpected error occurred: {str(e)}")
@app.post("/concatenate_videos")
async def concatenate_videos(request: Request):
try:
# Generate a unique filename for the output
output_filename = f"{uuid.uuid4()}.mp4"
output_path = os.path.join(OUTPUT_DIR, output_filename)
# Call the modal API with the request data and download the output file
data = await request.json()
video_urls = data.get("video_urls")
if not video_urls or not isinstance(video_urls, list):
raise HTTPException(status_code=400, detail="Invalid video_urls in request. Must be a list of URLs.")
# Download the video files
video_files = []
for i, url in enumerate(video_urls):
video_file = await download_file(url, f"_{i}.mp4")
video_files.append(video_file)
# Create a temporary file with the list of input files
concat_list_path = os.path.join(OUTPUT_DIR, "concat_list.txt")
with open(concat_list_path, "w") as f:
for file in video_files:
f.write(f"file '{file}'\n")
# Run ffmpeg command
ffmpeg_cmd = f"ffmpeg -f concat -safe 0 -i {concat_list_path} -c copy {output_path}"
process = await asyncio.create_subprocess_shell(
ffmpeg_cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE
)
_, stderr = await process.communicate()
if process.returncode != 0:
print(f"FFmpeg error: {stderr.decode()}")
raise HTTPException(status_code=500, detail=f"FFmpeg failed: {stderr.decode()}")
# Clean up temporary files
for file in video_files:
os.remove(file)
os.remove(concat_list_path)
# Return the URL path to the output file
return f"/output/{output_filename}"
except Exception as e:
print(f"An error occurred: {str(e)}")
print(traceback.format_exc())
raise HTTPException(status_code=500, detail=f"An unexpected error occurred: {str(e)}")
@app.post("/concatenate_audio")
async def concatenate_audio(request: Request):
try:
# Generate a unique filename for the output
output_filename = f"{uuid.uuid4()}.mp3"
output_path = os.path.join(AUDIO_DIR, output_filename)
# Call the modal API with the request data and download the output file
data = await request.json()
audio_urls = data.get("audio_urls")
if not audio_urls or not isinstance(audio_urls, list):
raise HTTPException(status_code=400, detail="Invalid audio_urls in request. Must be a list of URLs.")
# Download the audio files
audio_files = []
for i, url in enumerate(audio_urls):
audio_file = await download_file(url, f"_{i}.mp3")
audio_files.append(audio_file)
# Create a temporary file with the list of input files
concat_list_path = os.path.join(AUDIO_DIR, "concat_list.txt")
with open(concat_list_path, "w") as f:
for file in audio_files:
f.write(f"file '{file}'\n")
# Run ffmpeg command with improved audio parameters
ffmpeg_cmd = f"ffmpeg -f concat -safe 0 -i {concat_list_path} -c:a aac -b:a 192k -strict experimental {output_path}"
process = await asyncio.create_subprocess_shell(
ffmpeg_cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE
)
_, stderr = await process.communicate()
if process.returncode != 0:
print(f"FFmpeg error: {stderr.decode()}")
raise HTTPException(status_code=500, detail=f"FFmpeg failed: {stderr.decode()}")
# Clean up temporary files
for file in audio_files:
os.remove(file)
os.remove(concat_list_path)
# Return the URL path to the output file
return f"/audio/{output_filename}"
except Exception as e:
print(f"An error occurred: {str(e)}")
print(traceback.format_exc())
raise HTTPException(status_code=500, detail=f"An unexpected error occurred: {str(e)}")
@app.post("/make_video")
async def make_video(request: Request):
try:
# Generate a unique filename for the output
output_filename = f"{uuid.uuid4()}.mp4"
output_path = os.path.join(OUTPUT_DIR, output_filename)
temp_dir = os.path.join(tempfile.gettempdir(), generate_hash())
os.makedirs(temp_dir, exist_ok=True)
data = await request.json()
assets = data.get("assets", {})
clips = assets.get("clips", [])
music_url = assets.get("music_url")
volume_adjustment = data.get("volume_adjustment", 1.0) # Default to normal volume if not specified
if not clips or not isinstance(clips, list):
raise HTTPException(status_code=400, detail="Invalid clips in request.")
# Create a list to hold clip video files that we'll concatenate later
clip_videos = []
segment_list_path = os.path.join(temp_dir, "segment_list.txt")
with open(segment_list_path, "w") as segment_file:
# Process each clip: combine image with its audio
for i, clip in enumerate(clips):
image_url = clip.get("image_url")
audio_url = clip.get("audio_url")
if not image_url or not audio_url:
raise HTTPException(status_code=400, detail=f"Missing image_url or audio_url in clip {i}")
# Download files
image_file = await download_file(image_url, ".jpg")
audio_file = await download_file(audio_url, ".mp3")
# Create segment video
segment_output = os.path.join(temp_dir, f"segment_{i}.mp4")
# Run ffmpeg command to create video segment
segment_cmd = f'ffmpeg -loop 1 -i {image_file} -i {audio_file} -c:v libx264 -tune stillimage -c:a aac -b:a 192k -shortest -pix_fmt yuv420p {segment_output}'
proc = await asyncio.create_subprocess_shell(
segment_cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE
)
_, stderr = await proc.communicate()
if proc.returncode != 0:
print(f"FFmpeg error for segment {i}: {stderr.decode()}")
raise HTTPException(status_code=500, detail=f"FFmpeg failed for segment {i}: {stderr.decode()}")
# Add to list for concatenation
clip_videos.append(segment_output)
segment_file.write(f"file '{segment_output}'\n")
# Clean up individual files
os.remove(image_file)
os.remove(audio_file)
# Concatenate all segment videos
concat_output = os.path.join(temp_dir, "concat_output.mp4")
concat_cmd = f'ffmpeg -f concat -safe 0 -i {segment_list_path} -c copy {concat_output}'
proc = await asyncio.create_subprocess_shell(
concat_cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE
)
_, stderr = await proc.communicate()
if proc.returncode != 0:
print(f"FFmpeg concat error: {stderr.decode()}")
raise HTTPException(status_code=500, detail=f"FFmpeg concat failed: {stderr.decode()}")
# If there's a music URL, download it and mix with the video
if music_url:
music_file = await download_file(music_url, ".wav")
# Final command to mix music with video at specified volume
final_cmd = (
f'ffmpeg -i {concat_output} -i {music_file} -filter_complex '
f'"[1:a]volume={volume_adjustment}[music];[0:a][music]amix=inputs=2:duration=longest" '
f'-c:v copy {output_path}'
)
proc = await asyncio.create_subprocess_shell(
final_cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE
)
_, stderr = await proc.communicate()
if proc.returncode != 0:
print(f"FFmpeg final mix error: {stderr.decode()}")
raise HTTPException(status_code=500, detail=f"FFmpeg music mixing failed: {stderr.decode()}")
os.remove(music_file)
else:
# If no music, just copy the concatenated output
shutil.copy(concat_output, output_path)
# Clean up temporary files and directory
for video_file in clip_videos:
os.remove(video_file)
os.remove(segment_list_path)
os.remove(concat_output)
os.rmdir(temp_dir)
# Return the URL path to the output file
return f"/output/{output_filename}"
except Exception as e:
print(f"An error occurred: {str(e)}")
print(traceback.format_exc())
raise HTTPException(status_code=500, detail=f"An unexpected error occurred: {str(e)}")
@app.post("/create_slideshow")
async def create_slideshow(request: Request):
try:
# Generate a unique filename for the output
output_filename = f"{uuid.uuid4()}.mp4"
output_path = os.path.join(OUTPUT_DIR, output_filename)
temp_dir = os.path.join(tempfile.gettempdir(), generate_hash())
os.makedirs(temp_dir, exist_ok=True)
data = await request.json()
image_urls = data.get("image_urls")
audio_url = data.get("audio_url")
duration = data.get("duration", 4) # Default to 4 seconds per image if not specified
if not image_urls or not isinstance(image_urls, list):
raise HTTPException(status_code=400, detail="Invalid image_urls in request. Must be a list of URLs.")
if not audio_url:
raise HTTPException(status_code=400, detail="Missing audio_url in request.")
# Download the images
image_files = []
for i, url in enumerate(image_urls):
image_file = await download_file(url, f"_{i}.jpg")
image_files.append(image_file)
# Download audio file
audio_file = await download_file(audio_url, ".mp3")
# Pre-process audio file to ensure it's valid
normalized_audio = os.path.join(temp_dir, "normalized_audio.wav")
audio_check_cmd = (
f'ffmpeg -i {audio_file} -af "aformat=sample_fmts=fltp:sample_rates=44100:channel_layouts=stereo" '
f'-y {normalized_audio}'
)
audio_process = await asyncio.create_subprocess_shell(
audio_check_cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE
)
_, audio_stderr = await audio_process.communicate()
# If audio normalization fails, create a silent audio track
if audio_process.returncode != 0:
print(f"Audio normalization failed: {audio_stderr.decode()}")
print("Creating silent audio track instead...")
# Calculate total video duration based on number of images and duration per image
total_duration = len(image_urls) * duration
silent_cmd = (
f'ffmpeg -f lavfi -i anullsrc=r=44100:cl=stereo -t {total_duration} '
f'-y {normalized_audio}'
)
silent_process = await asyncio.create_subprocess_shell(
silent_cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE
)
_, silent_stderr = await silent_process.communicate()
if silent_process.returncode != 0:
print(f"Silent audio creation failed: {silent_stderr.decode()}")
# Fall back to no audio if even silent audio fails
normalized_audio = None
# Create a text file with the list of images and their duration
images_list_path = os.path.join(temp_dir, "images_list.txt")
with open(images_list_path, "w") as f:
for file in image_files:
f.write(f"file '{file}'\n")
f.write(f"duration {duration}\n")
# Add the last image again with a small duration to prevent ffmpeg from cutting it off
f.write(f"file '{image_files[-1]}'\n")
f.write(f"duration 0.1\n")
# Create intermediate video without audio
intermediate_video = os.path.join(temp_dir, "intermediate.mp4")
# Use the complex concat demuxer for images to create a slideshow
concat_cmd = (
f'ffmpeg -f concat -safe 0 -i {images_list_path} -vsync vfr '
f'-pix_fmt yuv420p -c:v libx264 -r 30 {intermediate_video}'
)
process = await asyncio.create_subprocess_shell(
concat_cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE
)
_, stderr = await process.communicate()
if process.returncode != 0:
print(f"FFmpeg slideshow creation error: {stderr.decode()}")
raise HTTPException(status_code=500, detail=f"FFmpeg slideshow creation failed: {stderr.decode()}")
# Add audio to the slideshow only if normalized_audio is available
if normalized_audio:
final_cmd = (
f'ffmpeg -i {intermediate_video} -i {normalized_audio} '
f'-c:v copy -c:a aac -b:a 192k -shortest {output_path}'
)
process = await asyncio.create_subprocess_shell(
final_cmd,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE
)
_, stderr = await process.communicate()
if process.returncode != 0:
print(f"FFmpeg audio addition error: {stderr.decode()}")
# If adding audio fails, use just the video
shutil.copy(intermediate_video, output_path)
else:
# If no normalized audio available, use just the video
shutil.copy(intermediate_video, output_path)
# Clean up temporary files
for file in image_files:
if os.path.exists(file):
os.remove(file)
if os.path.exists(images_list_path):
os.remove(images_list_path)
if os.path.exists(intermediate_video):
os.remove(intermediate_video)
if os.path.exists(audio_file):
os.remove(audio_file)
if normalized_audio and os.path.exists(normalized_audio):
os.remove(normalized_audio)
try:
os.rmdir(temp_dir)
except OSError:
# Directory might not be empty, try to clean up remaining files
for remaining_file in os.listdir(temp_dir):
try:
os.remove(os.path.join(temp_dir, remaining_file))
except:
pass
try:
os.rmdir(temp_dir)
except:
pass
# Return the URL path to the output file
return f"/output/{output_filename}"
except Exception as e:
print(f"An error occurred: {str(e)}")
print(traceback.format_exc())
raise HTTPException(status_code=500, detail=f"An unexpected error occurred: {str(e)}")
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860) |