Added support for defining a "time range" for a Playable to set the time boundaries of what can be played by the diffenrent players (Popcorn and HtmlPlayer for now). Added option in Segment widget to define a timerange on click.
<?php
$data = json_decode(file_get_contents("php://input"));
if (!isset($data->annotations[0]->id)) {
$data->annotations[0]->id = uniqid("annotation_");
}
if (!isset($data->annotations[0]->type)) {
$data->annotations[0]->type = uniqid("annotationType_");
}
print_r(json_encode($data));
?>