Compare commits
2 commits
51f47b8d58
...
b9999a8d60
Author | SHA1 | Date | |
---|---|---|---|
b9999a8d60 | |||
1cc7566016 |
5 changed files with 54 additions and 6 deletions
|
@ -7,9 +7,9 @@
|
||||||
"sourceUrl": "https://gabe.rocks/grayjay-pt/PeerTubeConfig.json",
|
"sourceUrl": "https://gabe.rocks/grayjay-pt/PeerTubeConfig.json",
|
||||||
"repositoryUrl": "https://code.gabe.rocks/gabriel/peertube-grayjay",
|
"repositoryUrl": "https://code.gabe.rocks/gabriel/peertube-grayjay",
|
||||||
"scriptUrl": "./PeerTubeScript.js",
|
"scriptUrl": "./PeerTubeScript.js",
|
||||||
"version": 20,
|
"version": 1,
|
||||||
|
|
||||||
"iconUrl": "./peertube.png",
|
"iconUrl": "./icon.png",
|
||||||
"id": "d770c577-e9ec-4435-a78a-f83fb9064bdf",
|
"id": "d770c577-e9ec-4435-a78a-f83fb9064bdf",
|
||||||
|
|
||||||
"scriptSignature": "",
|
"scriptSignature": "",
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
|
|
||||||
"allowEval": false,
|
"allowEval": false,
|
||||||
"allowUrls": [
|
"allowUrls": [
|
||||||
"everywhere"
|
"https://peertube.libresolutions.network"
|
||||||
],
|
],
|
||||||
|
|
||||||
"constants": {
|
"constants": {
|
||||||
|
|
|
@ -126,7 +126,7 @@ source.enable = function (conf) {
|
||||||
|
|
||||||
source.getHome = function () {
|
source.getHome = function () {
|
||||||
return getVideoPager('/api/v1/videos', {
|
return getVideoPager('/api/v1/videos', {
|
||||||
sort: "best"
|
sort: "-publishedAt"
|
||||||
}, 0);
|
}, 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
BIN
icon.png
Normal file
BIN
icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 126 KiB |
27
index.html
27
index.html
|
@ -1 +1,26 @@
|
||||||
<a href="grayjay://plugin/http://10.0.0.2:8000/PeerTubeConfig.json?url=https://peertube.libresolutions.network">Install</a>
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Libre Solutions Network PT Plugin for Grayjay</title>
|
||||||
|
<style>
|
||||||
|
body{
|
||||||
|
font-size:18px;
|
||||||
|
display:flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
button{
|
||||||
|
padding:10px;
|
||||||
|
font-size:24px;
|
||||||
|
border-radius:6px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Libre Solutions Network</h1>
|
||||||
|
<h2>Peertube Plugin for Grayjay</h2>
|
||||||
|
|
||||||
|
<p>See the <a href="https://code.gabe.rocks/gabriel/peertube-grayjay"></a></p>
|
||||||
|
<a href="grayjay://plugin/https://gabe.rocks//peertube-grayjay/PeerTubeConfig.json"><button>Install</button></a>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
25
readme.md
25
readme.md
|
@ -1 +1,24 @@
|
||||||
gonna update later...
|
# Grayjay PeerTube Plugin for Libre Solutions Network
|
||||||
|
|
||||||
|
Hopefully this specific plugin will be unnecessary.
|
||||||
|
I forked the official [peertube plugin](https://gitlab.futo.org/videostreaming/plugins/peertube) because as it currently exists, it doesn't properly load videos from remote instances.
|
||||||
|
|
||||||
|
My solution isn't very elegant, I'm not familiar with typescript, but this plugin will allow you to browse videos within the network for the [Libre Solutions Network PeerTube](https://peertube.libresolutions.network.)
|
||||||
|
|
||||||
|
## Changes made:
|
||||||
|
- Changing from trending peertube videos to most recent
|
||||||
|
- Setting the baseURL to `peertube.libresolutions.network`
|
||||||
|
- To allow remote videos to load, i had to hardcode `getVideoPager` url parameter with:
|
||||||
|
```url: "https://peertube.libresolutions.network"+ v.url.substring(v.url.search("/videos/")),```
|
||||||
|
|
||||||
|
**Why?** Because when the peertube plugin loads a remote video it throws an error `No source enabled to support url` Meaning that you would need to install the peertube plug-in for *every instance* within your network.
|
||||||
|
|
||||||
|
Thankfully peertube seamlessly handles links to remote videos when you replace it with your instance url.
|
||||||
|
|
||||||
|
## Outstanding issues
|
||||||
|
|
||||||
|
- I would prefer to pull the baseURL parameter properly, but I had trouble making that work and decided to just hardcode it.
|
||||||
|
- I have no idea how/if this will impact casting, but hope to test that soon.
|
||||||
|
- I need to properly sign the plugin
|
||||||
|
|
||||||
|
[Plugin Documentation](https://gitlab.futo.org/videostreaming/grayjay/-/blob/master/plugin-development.md)
|
Loading…
Reference in a new issue