Tecnhotron commited on
Commit
7bc21ad
·
1 Parent(s): 9af3cb6

BIG CHANGES

Browse files
Files changed (1) hide show
  1. app.py +3 -6
app.py CHANGED
@@ -692,12 +692,9 @@ def process_video_request(request_id: str, form_data: Dict, file_paths: Dict, ap
692
  editing_plan = plan_result['plan']
693
  logger.info(f"Generated Editing Plan Successfully [{request_id}]")
694
 
695
- # --- 4. Upload to OneDrive as Clipchamp project ---
696
- update_progress(request_id, "UPLOADING_ONEDRIVE", "Building Clipchamp project and uploading to OneDrive...")
697
- logger.info(f"Starting OneDrive upload for request [{request_id}]")
698
-
699
- if not ONEDRIVE_CLIENT_ID:
700
- raise ValueError("ONEDRIVE_CLIENT_ID environment variable is not set. Cannot upload to OneDrive.")
701
 
702
  # Build source_to_filename mapping (source key -> original filename)
703
  source_to_filename = {}
 
692
  editing_plan = plan_result['plan']
693
  logger.info(f"Generated Editing Plan Successfully [{request_id}]")
694
 
695
+ # --- 4. Save Clipchamp project locally ---
696
+ update_progress(request_id, "SAVING", "Building and saving Clipchamp project locally...")
697
+ logger.info(f"Saving Clipchamp project for request [{request_id}]")
 
 
 
698
 
699
  # Build source_to_filename mapping (source key -> original filename)
700
  source_to_filename = {}