Using Cloudglue’s Transcribe API, convert your video into structured text content in minutes. Get everything from your video:
Complete speech transcription
Scene-by-scene descriptions
Text shown in the video
Concise video summary
Copy
Ask AI
from cloudglue import CloudGlue# Initialize client (API key will be loaded from environment)client = CloudGlue()# Upload your video fileuploaded = client.files.upload( 'path/to/local/video.mp4', wait_until_finish=True)# Start transcription using the uploaded file URItranscription = client.transcribe.run( url=uploaded.uri, enable_summary=True, enable_speech=True, enable_scene_text=True, enable_visual_scene_description=True, response_format='markdown')# Print the resultsprint(transcription.data.content)