fffiloni commited on
Commit
56841f6
·
1 Parent(s): f7f5e52

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -18
app.py CHANGED
@@ -115,31 +115,34 @@ def run_inference(prompt, video_path, condition, video_length):
115
  # Chunkify the video into 12 frames chunks
116
  chunks = chunkify(resized, target_fps, total_frames)
117
 
118
-
119
-
120
-
121
-
122
  output_path = 'output/'
123
  os.makedirs(output_path, exist_ok=True)
124
 
125
- # Construct the final video path
126
- video_path_output = os.path.join(output_path, f"{prompt}.mp4")
 
 
 
 
 
 
 
 
 
 
 
 
 
127
 
128
- # Check if the file already exists
129
- if os.path.exists(video_path_output):
130
- # Delete the existing file
131
- os.remove(video_path_output)
132
 
133
- if video_length > 12:
134
- command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{video_path}' --output_path '{output_path}' --width 512 --height 512 --fps 8 --video_length {video_length} --is_long_video"
135
- else:
136
- command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{video_path}' --output_path '{output_path}' --width 512 --height 512 --fps 8 --video_length {video_length}"
137
- subprocess.run(command, shell=True)
138
 
139
- # Construct the video path
140
- video_path_output = os.path.join(output_path, f"{prompt}.mp4")
141
 
142
- return "done", video_path_output
143
 
144
 
145
 
 
115
  # Chunkify the video into 12 frames chunks
116
  chunks = chunkify(resized, target_fps, total_frames)
117
 
 
 
 
 
118
  output_path = 'output/'
119
  os.makedirs(output_path, exist_ok=True)
120
 
121
+ processed_chunks = []
122
+
123
+ for index, chunk_path in enumerate(chunks_array):
124
+ print(f"Chunk #{index}: {chunk_path}")
125
+
126
+ # Check if the file already exists
127
+ if os.path.exists(os.path.join(output_path, f"{index}.mp4")):
128
+ # Delete the existing file
129
+ os.remove(os.path.join(output_path, f"{index}.mp4"))
130
+
131
+ #if video_length > 12:
132
+ # command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{video_path}' --output_path '{output_path}' --width 512 --height 512 --fps 8 --video_length {video_length} --is_long_video"
133
+ #else:
134
+ command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{chunk_path}' --output_path '{output_path}' --width 512 --height 512 --fps 8 --video_length {video_length}"
135
+ subprocess.run(command, shell=True)
136
 
137
+ # Construct the video path
138
+ video_path_output = os.path.join(output_path, f"{index}.mp4")
 
 
139
 
140
+ # Append processed chunk to final array
141
+ processed_chunks.append(video_path_output)
 
 
 
142
 
143
+ print(f"PROCESSED CHUNKS: {processed_chunks}")
 
144
 
145
+ return "done", processed_chunks[0]
146
 
147
 
148