Download recording
live.sessions.download_recording(strsession_id) -> BinaryResponseContent
GET/live/sessions/{session_id}/content
Get Live session content
Download recording
import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ.get("OPENAI_API_KEY"), # This is the default and can be omitted
)
response = client.live.sessions.download_recording(
"live_SQ",
)
print(response)
content = response.read()
print(content)