omi_transcript_segments
1 row where conversation_id = "0a261fd9-8d03-4e0e-a6df-bc04f34c3de6"
This data as json, CSV (advanced)
| id ▼ | conversation_id | text | speaker_id | speaker_name | start_time | end_time |
|---|---|---|---|---|---|---|
| 283117 | User Questions Interference 0a261fd9-8d03-4e0e-a6df-bc04f34c3de6 | And I let you interfere. How exactly saying. | 0 | User | 1.4800004291543019 | 5.845884472993021 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE omi_transcript_segments (
id INTEGER PRIMARY KEY AUTOINCREMENT,
conversation_id TEXT NOT NULL,
text TEXT,
speaker_id INTEGER,
speaker_name TEXT,
start_time REAL,
end_time REAL,
FOREIGN KEY (conversation_id) REFERENCES omi_conversations(id)
);
CREATE INDEX idx_omi_segments_conv ON omi_transcript_segments(conversation_id);