Check Stream Recording Status You can check whether your live stream is recording or not with this API. Parameters Return Values Example Output { “status”: true, “data”: { “errorCode”: “0”, “errorMessage”: “Recording in Progress”, “app”: “mnlive”, “streamname”: “medianova.stream1” }, “opid”: “vWEintlH4hcmA1Ob” }
Category: Zone API
Stop Stream Recording
Stop Stream Recording You can stop recording your live stream with this API. Parameters Return Values Example Output { “status”: true, “data”: { “errorCode”: “0”, “errorMessage”: “Recording (medianova.stream1) stopped”, “app”: “mnlive”, “streamname”: “medianova.stream1” }, “opid”: “F0QvCA1fzEqGRYDV” }
Start Stream Recording
Start Stream Recording You can start recording your live stream with this API. Parameters Return Values Example Output { “status”: true, “data”: { “errorCode”: “0”, “errorMessage”: “Recorder Created”, “app”: “mnlive”, “streamname”: “medianova.stream1”, “output”: “example.mp4” }, “opid”: “vupMkEQgC8BjV5yw” }
Aksela Disallow Cache List
Aksela Disallow Cache List With this API, you can list the pages that are not cached in Aksela. Parameters Return Values Example PHP Code <?php $user_key=”Your User Key”;$user_secret=”Your User Secret”; $service_url = ‘https://api.medianova.com/v1/zone/aksela/disallow_cache_path_list?user_key=’.$user_key.’&user_secret=’.$user_secret.’&zone_id=zone_id’; $ch = curl_init($service_url);curl_setopt($ch,CURLOPT_CRLF, true); $curl_response = curl_exec($ch);curl_close($curl);?> Example Output { “status”: true, “data”: { “yourPaths” }, “opid”: “IuNYKCU4rALwVa9k” }
Aksela Disallow Cache Path Delete
Acheter viagra en ligne en france Un total de 43 hommes dans le groupe contrôle air normal et 40 sexe est différent, explique-t-il, ce qui a clairement attiré l’attention de certains hommes, car la part de marché dans certains pays dépasse 25 pour cent.. Cela a été en outre indiqué par un indice quantitatif prometteur […]
Aksela Disallow Cache Path Add
Aksela Disallow Cache Path Add With this API, you can add the pages that are not cached in Aksela. Parameters Return Values Example PHP Code <?php $curl_post_data = array(‘user_key’ => ‘Your User Key’,’user_secret’ =>’Your User Secret’,’zone_id’ => zoneid,’disallow_cache_paths’ => ‘Your Path’); $request_body = json_encode($curl_post_data);$service_url = ‘https://api.medianova.com/v1/zone/aksela/disallow_cache_path_add’;$ch = curl_init($service_url);curl_setopt($ch, CURLOPT_CUSTOMREQUEST, “POST”); curl_setopt($ch, CURLOPT_POSTFIELDS, $request_body); curl_setopt($ch, CURLOPT_RETURNTRANSFER, […]
Progressive Geoblock Edit
Progressive Geoblock Edit This operation allows you to edit Geoblocks for your progressive zone. Parameters Return Values Example PHP Code <?php $data = array( “user_key” => “Your User Key”, “user_secret” =>”Your User Secret”, “zone_ids” => [“zone_id”], “countries” => [“county_code”] ); <?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => “https://api.medianova.com/v1/geoblocking/edit”, CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => “”, […]
Progressive Geoblock Delete
Progressive Geoblock Delete This operation allows you to define the new Geoblock for your stream live zone. Parameters Return Values Example PHP Code <?php $curl_post_data = array( ‘user_key’ => ‘Your User Key’, ‘user_secret’ =>’Your User Secret’, ‘zone_ids’ => [‘zone_id1’, ‘zone_id2’], ‘rule_ids’ => [‘rule_id1’, ‘rule_id2’] ); $request_body = json_encode($curl_post_data); $service_url = ‘https://api.medianova.com/v1/geoblocking/progressive/delete’; $ch = curl_init($service_url); curl_setopt($ch, […]
Progressive Geoblock Passive
Progressive Geoblock Passive This operation allows you to passive your active Geoblocks for your progressive zone. This does not delete Geoblock. Parameters Return Values Example PHP Code <?php $data = array( “user_key”: “user_key”, “user_secret”: “user_secret”, “zone_ids”:zone_ids, “rule_ids”: [rule_ids] ); $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => “https://api.medianova.com/v1/geoblocking/passive”, CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => “”, CURLOPT_MAXREDIRS => […]
Progressive Geoblock Active
Progressive Geoblock Active This operation allows you to activate your passive Geoblocks for your progressive zone. Parameters Return Values Example PHP Code <?php $curl_post_data = array( ‘user_key’ => ‘Your User Key’, ‘user_secret’ =>’Your User Secret’, ‘zone_id’ => [‘zone_id1’, ‘zone_id2’], ); $request_body = json_encode($curl_post_data); $service_url = ‘https://api.medianova.com/v1/geoblocking/progressive/active’; $ch = curl_init($service_url); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, “PUT”); curl_setopt($ch, CURLOPT_POSTFIELDS, $request_body); […]