Two fixes after a 2026-05-23 regression where a Kodi restart left plugin.video.youtube's service.py un-started, breaking every delegated play with a silent "Service IPC - Monitor has not started" error. - Addon: probe pv.youtube's localhost httpd (50152/50153) before delegating. If nothing is listening, show a "YouTube service down — restart Kodi" notification and fall back to our DASH / progressive paths instead of letting setResolvedUrl fail silently. - Sidecar: revert tokio runtime from current_thread back to multi_thread with 2 worker threads so subscriptions_feed's per-channel tokio::spawn fan-out runs in parallel. The current_thread RSS savings weren't worth the behavioral change.
22 lines
1,012 B
XML
22 lines
1,012 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<addon id="plugin.video.torttube"
|
|
name="torttube"
|
|
version="1.0.1"
|
|
provider-name="Sulkta-Coop">
|
|
<requires>
|
|
<import addon="xbmc.python" version="3.0.0"/>
|
|
<import addon="plugin.video.youtube" version="7.0.0" optional="true"/>
|
|
<import addon="inputstream.adaptive" version="2.0.0" optional="true"/>
|
|
</requires>
|
|
<extension point="xbmc.python.pluginsource" library="main.py">
|
|
<provides>video</provides>
|
|
</extension>
|
|
<extension point="xbmc.addon.metadata">
|
|
<summary lang="en_gb">YouTube via RustyPipe + SponsorBlock</summary>
|
|
<description lang="en_gb">Browse, search, and play YouTube videos without an account. Backed by a native RustyPipe sidecar binary. SponsorBlock segments are skipped automatically.</description>
|
|
<license>GPL-3.0-or-later</license>
|
|
<source>http://192.168.0.5:3001/Sulkta-Coop/torttube</source>
|
|
<platform>linux</platform>
|
|
<language>en</language>
|
|
</extension>
|
|
</addon>
|