Skip to content

Commit

Permalink
Merge pull request #3 from DarthWeber/master
Browse files Browse the repository at this point in the history
Funktionserweiterung für Videos
  • Loading branch information
Schnittcher authored Dec 21, 2024
2 parents a33ad7d + 10eea8e commit 9623c83
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
9 changes: 8 additions & 1 deletion FKBDevice/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,13 @@
FKB_rebootDevice(12345); //Gerät neustarten
```

### FKB_playVideo(integer $InstanceID, string $url, bool $loop, bool $showControls, bool $exitOnTouch, $exitOnCompletion)
Mit dieser Funktion kann ein Video gestartet werden. Für die weiteren Parameter siehe die FKB-Doku

**Beispiel:**
```php
FKB_playVideo(12345, 'http://www.EinVideo.com',false,true,true,true); //Das angegebene Video wird ein Mal abgespielt und auf Touch oder am Ende beendet.
```
### FKB_textToSpeech(integer $InstanceID, string $Value)
Mit dieser Funktion kann ein Text auf dem Gerät wiedergegeben werden.

Expand All @@ -140,4 +147,4 @@
**Beispiel:**
```php
FKB_setStringSetting(12345, 'screenBrightness', '100'); //Helligkeit wird auf 100 gesetzt
```
```
7 changes: 7 additions & 0 deletions FKBDevice/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -622,6 +622,13 @@ public function setBooleanSetting(string $Key, bool $Value)
return $this->checkRequest($result);
}

public function playVideo(string $url, bool $loop, bool $showControls, bool $exitOnTouch, $exitOnCompletion)
{
$Value = $Value ? 'true' : 'false';
$result = $this->sendRequest('?cmd=playVideo&url=' . $url . '&loop=' . $loop . '&showControls=' . $showControls . '&exitOnTouch=' . $exitOnTouch . '&exitOnCompletion=' . $exitOnCompletion);
return $this->checkRequest($result);
}

public function setStringSetting(string $Key, string $Value)
{
$result = $this->sendRequest('?cmd=setStringSetting&key=' . $Key . '&value=' . $Value);
Expand Down

0 comments on commit 9623c83

Please sign in to comment.