EuuIia commited on
Commit
3a01b5e
·
verified ·
1 Parent(s): 1135b0d

Update api/ltx_server.py

Browse files
Files changed (1) hide show
  1. api/ltx_server.py +4 -3
api/ltx_server.py CHANGED
@@ -516,9 +516,10 @@ class VideoService:
516
  # --- FADE_FIM ---
517
  if i < total_partes - 1:
518
  video_fade_fim = os.path.join(pasta, f"{base}_fade_fim_{i}.mp4")
519
- totalframes = self._get_total_frames(videoclone)
520
- startframe = totalframes - poda
521
- cmd_fim = f'ffmpeg -y -hide_banner -loglevel error -i "{videoclone}" -vf "trim=start_frame={startframe},setpts=PTS-STARTPTS" -an "{videofadefim}"'
 
522
  subprocess.run(cmd_fim, shell=True, check=True)
523
  video_anterior_fade_fim = video_fade_fim
524
  print(f"[DEBUG] Fade_fim preparado -> {video_fade_fim}")
 
516
  # --- FADE_FIM ---
517
  if i < total_partes - 1:
518
  video_fade_fim = os.path.join(pasta, f"{base}_fade_fim_{i}.mp4")
519
+
520
+ total_frames = self._get_total_frames(video_clone)
521
+ start_frame = total_frames - poda
522
+ cmd_fim = f'ffmpeg -y -hide_banner -loglevel error -i "{vide_oclone}" -vf "trim=start_frame={start_frame},setpts=PTS-STARTPTS" -an "{video_fade_fim}"'
523
  subprocess.run(cmd_fim, shell=True, check=True)
524
  video_anterior_fade_fim = video_fade_fim
525
  print(f"[DEBUG] Fade_fim preparado -> {video_fade_fim}")