public function createQualityTest($originalUrl, $mpdUrl, $threadCountMin, $threadCountMax, $threadStepSize, $threadRepetitons) { $fields = array('source' => $originalUrl, 'mpd' => $mpdUrl, 'threadCountMin' => $threadCountMin, 'threadCountMax' => $threadCountMax, 'threadStepSize' => $threadStepSize, 'threadRepetitons' => $threadRepetitons); $url = $this->basePath . "/dash/test"; return postCall($url, $fields); }
function getD3Random($numberPoints, $numberSets) { $url = "localhost:8080/quality/test/d3"; $fields = array('numberPoints' => $numberPoints, 'numberSets' => $numberSets); return postCall($url, $fields); }