@gibme/tablo.tv 20.0.0 → 20.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +58 -0
- package/package.json +13 -1
package/README.md
CHANGED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Tablo TV API Tooling
|
|
2
|
+
|
|
3
|
+
This package is not affiliated with or acting on behalf of Tablo TV
|
|
4
|
+
|
|
5
|
+
## Documentation
|
|
6
|
+
|
|
7
|
+
[https://gibme-npm.github.io/tablo.tv](https://gibme-npm.github.io/tablo.tv)
|
|
8
|
+
|
|
9
|
+
### Note
|
|
10
|
+
|
|
11
|
+
The access key and secret key required to interact with a Tablo device are not included in this repository but are required to use the Device API.
|
|
12
|
+
|
|
13
|
+
## Features
|
|
14
|
+
|
|
15
|
+
* Tablo Lighthouse API
|
|
16
|
+
* Non-Authenticated API
|
|
17
|
+
* List available devices
|
|
18
|
+
* List virtual devices
|
|
19
|
+
* Authenticated API
|
|
20
|
+
* Retrieve account information
|
|
21
|
+
* List Devices
|
|
22
|
+
* Resolve Device
|
|
23
|
+
* Device contexts
|
|
24
|
+
* List guide channels
|
|
25
|
+
* List of current live airings
|
|
26
|
+
* Retrieve channel airings
|
|
27
|
+
* Tablo Device API
|
|
28
|
+
* Discover devices
|
|
29
|
+
* General Methods
|
|
30
|
+
* Retrieve device information
|
|
31
|
+
* Retrieve device settings
|
|
32
|
+
* Retrieve device storage information
|
|
33
|
+
* Retrieve device hard drive information
|
|
34
|
+
* Retrieve device location information
|
|
35
|
+
* Retrieve device subscription information
|
|
36
|
+
* Retrieve account subscription information
|
|
37
|
+
* Retrieve device capabilities
|
|
38
|
+
* Device Updates
|
|
39
|
+
* Retrieve device update information
|
|
40
|
+
* Retrieve device update progress
|
|
41
|
+
* Channels
|
|
42
|
+
* Retrieves channels scan information
|
|
43
|
+
* Retrieves previous channel scan information
|
|
44
|
+
* Retrieves list of channels
|
|
45
|
+
* Retrieves guide status
|
|
46
|
+
* Retrieves airings (all or filtered)
|
|
47
|
+
* Watch Sessions
|
|
48
|
+
* Session Management
|
|
49
|
+
* Launches a watch session
|
|
50
|
+
* Retrieves a watch session
|
|
51
|
+
* Sends watch session keepalive
|
|
52
|
+
* Deletes/stops a watch session
|
|
53
|
+
* Live Stream Transcoding
|
|
54
|
+
* Utilizes FFMPEG
|
|
55
|
+
* Handles live transcoding of watch sessions
|
|
56
|
+
* Transcode the stream from MPEG2 to H.264
|
|
57
|
+
* Outputs to a local file path with M3U8 playlist
|
|
58
|
+
* Rolling stream to preset number of segments
|
package/package.json
CHANGED
|
@@ -1,12 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gibme/tablo.tv",
|
|
3
|
-
"version": "20.0.
|
|
3
|
+
"version": "20.0.1",
|
|
4
4
|
"description": "API interface for interacting with a Tablo TV device",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist/*"
|
|
9
9
|
],
|
|
10
|
+
"keywords": [
|
|
11
|
+
"tablo",
|
|
12
|
+
"tv",
|
|
13
|
+
"api",
|
|
14
|
+
"client",
|
|
15
|
+
"interface",
|
|
16
|
+
"discovery",
|
|
17
|
+
"management",
|
|
18
|
+
"control",
|
|
19
|
+
"channel",
|
|
20
|
+
"live"
|
|
21
|
+
],
|
|
10
22
|
"license": "MIT",
|
|
11
23
|
"scripts": {
|
|
12
24
|
"build": "yarn build:typescript",
|