webvmt / community-group

WebVMT Community Group
Other
6 stars 1 forks source link

Data sync with video, including sensors & GeoJSON #1

Open rjksmith opened 4 years ago

rjksmith commented 4 years ago

Background

Mobile video devices often collect additional data, e.g. drones can be used as sensor platforms and dashcams record vehicle telemetry such as speed and acceleration.

Allowing the option to embed JSON data within cues would permit synchronisation of arbitrary data with location and video without compromising interoperability, in a similar fashion to the GPX <extension> element.

Proposal

The following design is proposed.

A WebVMT data sync command which consists of:

Example

NOTE Cat, top left, after 5 secs until 25 secs

00:00:05.000 —> 00:00:25.000
{“sync”: {“type”: “org.ogc.geoai.example”, “data”:
  {“animal”:”cat”, “frame-zone”:”top-left"}
}}

NOTE Dog, mid right, after 10 secs until 40 secs

00:00:10.000 —> 00:00:40.000
{“sync”: {“type”: “org.ogc.geoai.example”, “data”:
  {“animal”:”dog”, “frame-zone”:”middle-right"}
}}
rjksmith commented 4 years ago

Issue migrated from https://github.com/w3c/sdw/issues/1141