this post was submitted on 29 May 2024
28 points (96.7% liked)

Linux

47342 readers
1311 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I want to create a minimal install for mpv playback through jellyfin-mpv-shim and macast. this is going to be a base for a FOSS media sink akin to a Chromecast. you attach it to your TV and it plays whatever you send it, like movies from your jellyfin server and youtube/vimeo/piped/etc videos. otherwise, there's no interaction with it, it doesn't handle input (remotes, mice, keyboards, etc.), it's controlled via apps (jellyfin android and allcast).

I've already made a proof-of-concept device running debian 12 with Plasma and it (mostly) works. now I'd like to trim the fat and install only what's absolutely necessary as I currently only have a 2006 macbook with busted screen and GMA950 with a mechanical HD. I'm gonna go with LAN only so I don't have to dick around with broadcom WLAN.

what do I need in terms of DEs and/OR WMs? do I need those at all? I seem to remember that I could run firefox in kiosk mode without anything else but X11, could I run mpv like that? or possibly wayland? what would be the absolute minimum package-wise to achieve this?

to reiterate, it's only going to display full-screen mpv when there's video to play, no menus, navigation, nada. possibly some slideshow-while-idle thingy in the future if it doesn't add too much in terms of software needed, but not right now.

top 19 comments
sorted by: hot top controversial new old
[–] KaninchenSpeed@sh.itjust.works 6 points 3 months ago* (last edited 3 months ago) (1 children)

I'm currently building a similar device, which uses miraclecast for screen sharing from a phone or laptop and jellyfin in firefox kiosk mode controlled via the jellyfin app as a idle screen. Also sending media links via kde connect is possible. I still want to implement hypnotix for tv and some kind of intigration with the streaming services of the german public brodcasters. I haven't thought about dlna but I like the idea.

I'm also using Debian as a base but I'm using LXQT with Wayland insted if Plasma. I tested everythin on a rasberry pi 4b but it's struggeling. I want to move everything to a rock 5c.

[–] urshanabi@lemmygrad.ml 1 points 3 months ago

best of luck

[–] LeFantome@programming.dev 4 points 3 months ago

If you want to run a single Wayland application, use Cage: https://github.com/cage-kiosk/cage

I would expect cage to be smaller than an X11 server.

MPV should work fine with Wayland and Pipewire.

https://www.phoronix.com/forums/forum/software/desktop-linux/1357040-mpv-0-35-media-player-released-with-pipewire-backend-wayland-dma-buf-support

[–] dysprosium@lemmy.dbzer0.com 2 points 3 months ago (1 children)

So basically a personalized FOSS chromecast device? Also, howd you send the media links? Via ssh?

[–] dingdongitsabear@lemmy.ml 4 points 3 months ago* (last edited 3 months ago)

jellyfin's android app has the cast functionality built-in, it connects to jellyfin-mpv-shim. you select the video from the app and press play and that's it - it plays on the remote device. you can then pause, ff/rewind, change subs, etc., from the android app.

as to youtube videos, select video in newpipe, share to allcast, allcast connects to macast, which uses yt-dl to play the video via mpv. you can then control the playback (stop, skip, etc) from allcast.

this all works on a full-featured desktop without problems; I'd like to strip everything but the bare necessities needed to run mpv.

[–] steersman2484@sh.itjust.works 2 points 3 months ago* (last edited 3 months ago) (1 children)

I don't have any experience with your exact question.

But I would look into xinit and try if you can start just mpv.

If this doesn't work look for a slim WM and configer it that the applications are displayed in fullscreen and launch mpv after the WM.

Probably any of the tiling window managers should work: https://wiki.archlinux.org/title/Window_manager

[–] dingdongitsabear@lemmy.ml 1 points 3 months ago (3 children)

yeah, that's the main question - do I need a window manager, when I all want is just full screen?

I've found something called mpv-kiosk, but that's a snap and that monstrosity is the opposite of what I need.

[–] notabot@lemm.ee 2 points 3 months ago (1 children)

You shouldn't need a window manager, you should be able to pass a tell mpv to just run full screen.

Alternativly, if you're up for a bit more work, it looks like you can get mpv to run in tge framebuffer and so not need ecen X11. It might take recompiling a few packages, I'm not sure whether the options are built by default now, but you could have a look at this thread fir example: https://bbs.archlinux.org/viewtopic.php?id=176072

[–] dingdongitsabear@lemmy.ml 1 points 3 months ago (1 children)

the fb route would be awesome, I'm adding this to my research list. would video playback be accelerated in this case?

[–] notabot@lemm.ee 1 points 3 months ago

I believe so, but that's definitely something you'd need to check yourself.

[–] steersman2484@sh.itjust.works 2 points 3 months ago

I also found this, It's for a RaspberryPi but surely can be adapted:

https://gist.github.com/seffs/2395ca640d6d8d8228a19a9995418211

[–] steersman2484@sh.itjust.works 1 points 3 months ago

You can look at the source of the snap and check what it does

[–] d_k_bo@feddit.de 1 points 3 months ago (1 children)

What should be shown if there is currently no playback?

[–] dingdongitsabear@lemmy.ml 1 points 3 months ago

doesn't matter. in the future I might cobble something together, like a clock or weather or a slideshow, but I'm fine with a blank/black/whatever screen.

[–] boredsquirrel@slrpnk.net 1 points 3 months ago (2 children)

Wayland is the future, but this is one of the things where X11 is like meant for it.

I would still go with Wayland. Use a compositor that just displays fullscreen.

Note that MPV needs XWayland, players like Celluloid/Haruna are Wayland native.

No idea about the rest though.

[–] LeFantome@programming.dev 2 points 3 months ago (1 children)

Other than his choice of video player not supporting Wayland yet, why is this perfect for X11?

If he is only going to run one app, he can use Cage.

https://github.com/cage-kiosk/cage

[–] boredsquirrel@slrpnk.net 1 points 3 months ago

I dont know the details, but easy remote control, network transparency etc.

This does not apply to a web-client (MPV) getting the media and just displaying it, with the station connected to a normal display.

So no, this is likely unproblematic on Wayland.

Nice recommendation!

[–] LeFantome@programming.dev 1 points 3 months ago (1 children)

Doesn’t MPV run natively on Wayland?

[–] boredsquirrel@slrpnk.net 1 points 3 months ago

I dont know it didnt the last time I checked