Strymas

Rating: 
0
No votes yet

Strymas is a native Sailfish OS YouTube client born from a simple wish: I just wanted a YouTube streamer that works.

Features:
- Chronological feed of your subscribed channels — videos and Shorts strips, newest first
- Global mini-player: keeps playing while you browse, docks into a corner, fullscreen with gestures (brightness/volume), double-tap zoom
- Background playback with optional audio-only mode (saves battery and data)
- MPRIS: control from Bluetooth headphones and the system media menu
- Watch history with resume, Continue watching row, Watch later list
- Channel pages with sections (Home / Videos / Shorts / Live / Playlists) and subscribe button
- Search, comments reading, sleep timer, notifications about new uploads
- Trending by region (needs a free YouTube Data API key — instructions in Settings)
- Optional Google sign-in (OAuth device flow) for subscription import, likes and your playlists

Requirements:
- yt-dlp must be installed: pkcon install python3-pip, then pip3 install --user yt-dlp
- Everything else is pulled in as RPM dependencies

Honest notes:
- Im not programmer. Built with AI assistance. Tested ONLY on Sony Xperia 10 III / Sailfish OS 5.1.
- It fully covers my own needs. If you have ideas or want to take the project further — go ahead, fork away.
- No tracking, no ads, no telemetry. Your keys and history stay on your device.

Screenshots: 
Application versions: 
AttachmentSizeDate
File harbour-yousail-0.2-1.noarch.rpm86.66 KB07/07/2026 - 21:16
File harbour-yousail-0.3-1.noarch.rpm89.32 KB09/07/2026 - 07:30
File harbour-yousail-0.3-1.noarch.rpm89.41 KB09/07/2026 - 10:14
Changelog: 

- Playback speed control (0.75x - 2x, button in player controls) - Fixed: playback position lost when switching to background audio or resuming the app - Fixed: stream interruptions now resume from the last position instead of restarting - Fixed: rare crash when a video reaches its very end - Failed videos in a playlist are skipped automatically

Comments

ghazouani's picture

Where is the aarch64

Fatal error: File './oss/noarch/python3-setuptools-46.1.3+git6-1.6.1.jolla.noarch.rpm' not found on medium 'https://releases.jolla.com/releases/5.0.0.11/jolla/aarch64/ 

 

takraslt's picture

Hi, ghazouani, 

A bit sad to see this...
This app is already packaged as noarch (architecture-independent), since it's pure QML + Python with no compiled code. A single package already installs identically on aarch64, armv7hl, and i486 devices, so separate architecture builds wouldn't change anything here.

I think, thats's not something my app controls — it's a package-repository issue on your device. The app only requires python3-pip; python3-setuptools gets pulled in as its dependency, and zypper is looking for that noarch package under the wrong (aarch64) repo path — a fairly common Sailfish repo-sync hiccup, usually after an OS update.

Worth trying, in order:

devel-su zypper ref

or, if that doesn't help:

devel-su ssu lr

to check that your jolla and store repos (including the noarch one) are actually enabled, then

devel-su pkcon refresh

and retry the install.

If setuptools still won't install through the package manager, you can usually skip it entirely and let pip handle it:

pip3 install --user --no-build-isolation yt-dlp

 

To be upfront: this is a personal project I built to scratch my own itch and decided to share — I'm not a professional Sailfish packager, and I can't promise it'll install cleanly on every device/repo configuration out there. If the repo fix above doesn't sort it out, feel free to dig into it yourself or let me know what ssu lr shows and I'll try to help where I can, but device-level package management issues are a bit outside what I can debug remotely.

windes's picture

Good day! Thanks for App! Entered youtube api key, Trending - All - List was loaded, but only text. No previews of videos. After tap on text - new window shows, where constantly video trying to load, but it shows error:

"Could not load video:

org.freedesktop.DBus.Error.Failed"

Xperia XA2, 5.1.0.11.

 

Ah, not installed yt-dlp, sorry, updating on 5.2.0.12 now, will install yt-dlp after.

takraslt's picture

Thank you for the detailed report.

I think, that I've just fixed this in the latest update. Could you update and try again? You should now see the real underlying error text, which will tell us exactly what's failing.

My best guess in the meantime: playback needs yt-dlp installed separately (the app doesn't bundle it). If you haven't already, try:

pkcon install python3-pip

pip3 install --user yt-dlp

 

If that's already installed and it's still failing, the new error message should reveal the real cause — please paste what it says..

I couldn't reproduce this on my device (don't have an XA2). Could you check if it resolves after a moment (thumbnails load asynchronously) or if it persists even after scrolling/reopening the tab? If it's still broken after the update, let me know exactly what you see and I'll dig further on my free time.

Thanks again for taking the time to report this — much appreciated!

kan's picture

Not bad, at least it works in opposite to microtube. Playback speed settings are missing and after playback interrupt it starts from the beggining.

takraslt's picture

Thanks for the feedback! I think, that both are fixed as of v0.3:

  • Playback speed is now available — added — tap the speed indicator in the player controls to cycle through 0.75×–2×.
  • Resume after interruption should no longer restart from the beginning — playback position now should be tracked more reliably and survive background/minimize interruptions and stream reloads.