# ai_media_orgs_users_video_script_generation_audio_create Endpoint to generate video scripts from a audio file. The audio file can be one of mp3 and wav. The request should be a multipart form with your audio file in the file field. Initial Response: {"script": None, "status": "started_generation", "generation_id": "your-generation-id."} This signals the generation has started. You can use the generation id to query video script generation status from this endpoint, using a JSON like below: {"generation_id": "your-generation-id"} Example response: {"script": "hello this is a video script.", "status": "finished", "generation_id": "your-generation-id"} Endpoint: POST /api/ai-media/orgs/{org}/users/{user_id}/video-script-generation/audio/ Version: 4.84.1-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `org` (string, required) - `user_id` (string, required) ## Response 200 fields