Beispiel #1
0
 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);
 }
Beispiel #2
0
function getD3Random($numberPoints, $numberSets)
{
    $url = "localhost:8080/quality/test/d3";
    $fields = array('numberPoints' => $numberPoints, 'numberSets' => $numberSets);
    return postCall($url, $fields);
}