Marsview's Search API is powered by Marsview's proprietary Knowledge Web architecture which helps in extracting information from both visual and audio components.
Model dependency: Speech to text, OCR, Topics
Optional dependency: Screen Activity, Emotion, Sentiment, Tone, Speaker Separation
fileId
will return search results with status flags for speech_to_text
and OCR
indicating if they are indexed.status
object and the results
object. The status object is used to indicate if the metadata is generated. This has to be validated first by the end-user before accessing the results object
for reliable search results {"query":"jQuery","status":{"speech_to_text":true,"ocr":true}"results":{"speech_to_text":[...{"start_time":12345.00,"end_time":123346.00,"transcript":"As I needed to extend jQuery validate to add this new national insurance number regex I am also including this as it may be useful for someone"}...],"ocr":[...{"frame_id":1532,"frame_offset":12929.00,"OCR": ["JQuery" , "JS Summit" "2020"]}...]}}
Fields | Description |
| Starting time of the chunk in milliseconds |
| Ending time of the chunk in milliseconds |
| The transcribed sentence from Marsview STT |
| Frame ID offset from the starting of the video |
| Offset time in milliseconds from the starting of the video |
| List of OCR tags found in that particular frame |
userId
will return search results with file_id
results
object with a list of files in that user_id
that match the query."query":"jQuery","results":{"speech_to_text":[..."file_id":"2744b249-233d-4cd2-b9ca-5fb61b20c646","file_id":"a6708572-f272-45a9-ba5e-22eaa418c693"...],"ocr":[..."file_id":"2744b249-233d-4cd2-b9ca-5fb61b20c646","file_id":"a6708572-f272-45a9-ba5e-22eaa418c693"...]}}
Fields | Description |
| File ID of the video that matches with the query string. |
​