Each clip folder in GCS has its own timestamped parent folder:
Let's put all the clip folders in the same parent folder
upload_to_drive_gcs(
project_id=project_id,
bucket_name=bucket_name,
c=c,
folder_prefix=topic + str(int(time.time())), # this timestamp is being generated for each clip; refactor to use the same timestamp for all clips (within one script execution)
source_dir=clips_path,
subdir=subdir
)
Each clip folder in GCS has its own timestamped parent folder:
Let's put all the clip folders in the same parent folder