-
Notifications
You must be signed in to change notification settings - Fork 455
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
1,514 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Piped Addon for Kodi | ||
|
||
[![AGPL v3](https://shields.io/badge/License-AGPL%20v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0.en.html) | ||
|
||
An addon which allows you to access any Piped instance, login and manage your playlists and watch history. | ||
|
||
## Features: | ||
|
||
**Basic Features** | ||
|
||
- [x] Watch videos (obviously!) | ||
- [x] Search for videos, channels and playlists | ||
- [x] Multi-language audio | ||
- [x] Subtitles | ||
- [x] Pick favourite your Piped instance | ||
- [x] Compatible with Sponsor Block | ||
- [ ] Watch live streams (can be watched once finished, for now) | ||
|
||
**User Features (logged in to a Piped instance)** | ||
|
||
- [x] Personal Feed | ||
- [x] Subscriptions | ||
- [x] Playlists | ||
- [x] Optional: Watch History (use a playlist as watch history) | ||
- [x] Optional: Hide already watched videos in each section | ||
|
||
## Watch history | ||
|
||
To enable the watch history: After logging in from the settings, go to your playlists and choose "**Set as watch history**" from the context menu on the playlist you wish to use as your watch history. | ||
|
||
## Piped instances | ||
|
||
The official Piped instance is set by default. | ||
|
||
But, you can also choose your favourite Piped instance or host your own and change it in the settings. | ||
|
||
- List of public Piped Instances: [Public Piped instances](https://github.com/TeamPiped/Piped/wiki/Instances) | ||
- Host your own instance: [Self-Hosting](https://docs.piped.video/docs/self-hosting/) | ||
|
||
## Disclaimer | ||
|
||
This plugin is neither affiliated with nor endorsed by TeamPiped. | ||
|
||
# License | ||
Piped Addon for Kodi is licensed under the AGPL v3 License. See [LICENSE](LICENSE) for details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<addon id="plugin.video.piped" name="Piped" version="1.0.0" provider-name="Syhlx"> | ||
<requires> | ||
<import addon="xbmc.python" version="3.0.0" /> | ||
<import addon="inputstream.adaptive" version="19.1.0" /> | ||
<import addon="script.module.requests" version="2.31.0" /> | ||
</requires> | ||
<extension point="xbmc.service" library="service.py" /> | ||
<extension point="xbmc.python.pluginsource" library="default.py"> | ||
<provides>video</provides> | ||
</extension> | ||
<extension point="xbmc.addon.metadata"> | ||
<summary lang="en_GB">Piped Addon for Kodi</summary> | ||
<description lang="en_GB">An addon which allows you to access any Piped instance, login and manage your playlists and watch history</description> | ||
<disclaimer lang="en_GB">This plugin is neither affiliated with nor endorsed by TeamPiped</disclaimer> | ||
<platform>all</platform> | ||
<license>GPL-3.0-only</license> | ||
<source>https://github.com/syhlx/plugin.video.piped</source> | ||
<news>None</news> | ||
<assets> | ||
<icon>resources/icon.png</icon> | ||
<fanart>resources/fanart.jpg</fanart> | ||
</assets> | ||
</extension> | ||
</addon> |
Oops, something went wrong.