Package Details: stremio-service-bin 0.1.15-1

Git Clone URL: https://aur.archlinux.org/stremio-service-bin.git (read-only, click to copy)
Package Base: stremio-service-bin
Description: The companion app of Stremio Web
Upstream URL: https://github.com/Stremio/stremio-service
Keywords: netflix popcorn-time stremio stremio-web
Licenses: GPL-2.0
Conflicts: stremio-service
Provides: stremio-service
Submitter: onurmercury
Maintainer: onurmercury
Last Packager: onurmercury
Votes: 4
Popularity: 1.19
First Submitted: 2023-09-24 20:57 (UTC)
Last Updated: 2026-02-08 14:48 (UTC)

Latest Comments

Kyza commented on 2026-03-05 02:12 (UTC) (edited on 2026-03-05 02:12 (UTC) by Kyza)

Hello, this PKGBUILD diff should provide autobump.

--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,7 +9,7 @@
 _debname=stremio-service

 pkgname="$_debname-bin"
-pkgver=0.1.15
+pkgver=0.1.18
 pkgrel=1
 pkgdesc="The companion app of Stremio Web"
 arch=('x86_64')
@@ -24,8 +24,19 @@ depends=('cairo'
          'libayatana-appindicator')
 conflicts=("$_debname")
 provides=("$_debname")
+
+pkgver() {
+    local latest
+    latest=$(curl -s -H "User-Agent: bash" \
+        https://api.github.com/repos/Stremio/stremio-service/releases/latest |
+        grep -o '"tag_name":"[^"]*' | cut -d'"' -f4)
+    latest=${latest#v}
+    [[ -z "$latest" ]] && latest="$pkgver"
+    echo "$latest"
+}
+
 source=("${_debname}_v${pkgver}-${arch}.deb::https://github.com/Stremio/stremio-service/releases/download/v${pkgver}/${_debname}_amd64.deb")
-sha512sums=('f37b790ecc365f968fd8be3db7bb2a3782799d84d26c2ee710736e0bae4c6cfc1fd9e96a1f275bc683a35a46fc07b10382ab66aa1d5563fa35d8e792fb0d017b')
+sha512sums=('SKIP')

 package() {
   bsdtar -xf data.tar.xz -C "$pkgdir/"

onurmercury commented on 2025-11-21 20:54 (UTC)

I haven't fully tried the v0.1.14 yet but I'm pretty sure that error is not intended. I also saw a similar bug report at the GitHub repo and it seems to be an upstream bug. Would you mind testing the v0.1.13 to see the error exists there too? I can symlink the ffmpeg paths to system ones until it gets fixed by upstream - if that's the case. Cheers.

PositiveRobin commented on 2025-11-21 20:44 (UTC)

I had the error "Video is not supported" on web Stremio. When trying to fix it, I realized that the Stremio service is using its own ffmpeg and ffprobe in /usr/share/stremio-service/. Those two files seem faulty. I symlinked my system versions of the packages insted and now it works flawlessly. Is it an intended behavior?