Compare commits

...

3 Commits

Author SHA1 Message Date
syeopite 2effe7f071
Merge 8ebfc7fe41 into 29c528970d 2024-05-05 00:14:30 +02:00
Sebastian Hädrich 29c528970d
fix(api) 🏷️ Add missing properties to /videos API endpoint (#551)
– type
– storyboards
– isPostLiveDvr
– dashUrl
2024-05-05 00:13:58 +02:00
syeopite 8ebfc7fe41
Update Rule 2 of instance list
Now that Invidious has switched to tagged versioning again, the rule ensuring that instances must not be a month out of date should be updated to support this.
2024-04-26 22:56:04 +00:00
2 changed files with 17 additions and 1 deletions

View File

@ -37,6 +37,7 @@ All endpoints that return a JSON body support `&hl=LANGUAGE` for translating fie
```javascript
{
"type": String, // "video"|"published"
"title": String,
"videoId": String,
"videoThumbnails": [
@ -47,6 +48,19 @@ All endpoints that return a JSON body support `&hl=LANGUAGE` for translating fie
"height": Int32
}
],
"storyboards": [
{
"url": String,
"templateUrl": String,
"width": Int32,
"height": Int32,
"count": Int32,
"interval ": Int32,
"storyboardWidth": Int32,
"storyboardHeight": Int32,
"storyboardCount": Int32
}
],
"description": String,
"descriptionHtml": String,
@ -82,7 +96,9 @@ All endpoints that return a JSON body support `&hl=LANGUAGE` for translating fie
"rating": Float32,
"isListed": Bool,
"liveNow": Bool,
"isPostLiveDvr": Bool,
"isUpcoming": Bool,
"dashUrl:" String,
"premiereTimestamp": Int64?,
"hlsUrl": String?,

View File

@ -87,7 +87,7 @@
## Rules to have your instance in this list:
1. Instances MUST have been up for at least a month before it can be added to this list.
2. Instances MUST have been updated in the last month. An instance that hasn't been updated in the last month is considered unmaintained and is removed from the list.
2. Instances MUST not be more than a month out of date compared with either the latest commit or latest release. Any instance that is more than a month out of date is considered unmaintained and will be removed from the list.
3. Instances MUST have statistics (`/api/v1/stats`) enabled (`statistics_enabled: true` in the configuration file).
4. Instances MUST have an uptime of at least 90% ([according to uptime.invidious.io](https://uptime.invidious.io/)).
5. Instances MUST be served via domain name.