Skip to content

Commit

Permalink
[plugin.video.piped] 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
syhlx committed Jan 6, 2024
1 parent 42a9230 commit 8b3009e
Show file tree
Hide file tree
Showing 12 changed files with 1,514 additions and 0 deletions.
661 changes: 661 additions & 0 deletions plugin.video.piped/LICENSE.txt

Large diffs are not rendered by default.

45 changes: 45 additions & 0 deletions plugin.video.piped/README.md
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.
25 changes: 25 additions & 0 deletions plugin.video.piped/addon.xml
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>
Loading

0 comments on commit 8b3009e

Please sign in to comment.