retiolus

joined 1 year ago
MODERATOR OF
[–] retiolus@lemmy.cat 1 points 1 year ago (2 children)

Now, really, in my experience I had less problems with Piped than with Invidious

[–] retiolus@lemmy.cat 2 points 1 year ago (3 children)
[–] retiolus@lemmy.cat 1 points 1 year ago
[–] retiolus@lemmy.cat 3 points 1 year ago

Thak makes sense, thank you!

[–] retiolus@lemmy.cat 15 points 1 year ago

You'll find a lot of answers in this thread: https://lemmy.dbzer0.com/post/6385210

(I used Piped (https://piped.video) with LibreTube (https://libretube.dev/))

[–] retiolus@lemmy.cat 6 points 1 year ago (1 children)

Accessibility would be to let people have the choice: making a bridge between Discord, Matrix, Telegram, XMPP, IRC, etc... There are plenty of tools to do that today, it's not complicated.

https://github.com/42wim/matterbridge

[–] retiolus@lemmy.cat 1 points 1 year ago (1 children)

I buy ever phone on backmarket.com

[–] retiolus@lemmy.cat 4 points 1 year ago

For me the best option on Android is LibreTube with a nice-working piped instance!

[–] retiolus@lemmy.cat 4 points 1 year ago

I don't pirate songs, but I guess I would use a scrobbler and then ListenBrainz suggestions

[–] retiolus@lemmy.cat 3 points 1 year ago

How can they if I download everything on my personal computer using a VPN?

 

cross-posted from: https://lemmy.cat/post/2941154

Hello, not so long ago I discovered Jellyfin, and by extension Radarr, Sonarr, Bazarr, Jackett, etc.

So I immediately installed Jellyfin on a Hetzner server that I already had, powerful enough to have several people consuming content at the same time on these kinds of services.

As the hard drives at home were full, and I didn't want to sacrifice my bandwidth, I got a Hetzner Storage Box to store the video content on.

So I've got Radarr, Sonarr and qBitTorrent installed on my computer, where I manage the downloads, upload them to the Storage Box which is then mounted on the server where Jellyfin is installed to serve the content (see the diagram above, the orange part would be a hypothesis for integrating more storage in the future).

Problems :

  • Synchronisation between my local machine and the Hetzner Storage Box: as I was saying, I download everything locally and then upload everything with rclone sync to the storage. The exact command is: rclone sync /mnt/2TB/Jellyfin HetznerBox:/Jellyfin --exclude "*.!qB" --transfers 10 --fast-list --checkers 500 --progress --log-level DEBUG --log-file=/var/log/rclone/rclone-sync-jellyfin.log This has several problems, it's slow, and I have a 1 GB/s fibre connection, and I doubt the problem is with Hetzner... Secondly, if I delete content on the storage server and run the command again, the content will be resynchronised. What's more, it often happens that I run the command and nothing happens for a long time before the synchronisation starts. Thirdly, rclone sync forces me to keep a local copy of everything.
  • rclone mount does not seem to respect the --vfs-cache-max-size: here is the command I use to mount the storage server on the server where Jellyfin is installed rclone mount HetznerBox:/Jellyfin /somepath/Jellyfin/ --vfs-cache-mode full --vfs-cache-max-size 100G --allow-other. But if I run df -h I get /dev/md2 436G 148G 266G 36% / And if I run sudo du -sh Jellyfin/ I get 378G Jellyfin/ The server only has Jellyfin installed, and I don't know how to look precisely how much the vfs cache is using.
  • since Radarr, Sonarr and everything are on my computer, if I install Jellyserr on the same server as Jellyfin (which would be perfect for managing everything when we have several users), it won't be able to communicate with Radarr and Sonarr.

Possible solutions:

  • Don't use my local machine. I'd like to use the Hetzner server for Radarr, Sonarr, qBitTorrent, etc. but the problem is that I don't want to store the data on this server, but on the Storage Box. How can I download directly from one server to another?
  • you say...
 

Hello, not so long ago I discovered Jellyfin, and by extension Radarr, Sonarr, Bazarr, Jackett, etc.

So I immediately installed Jellyfin on a Hetzner server that I already had, powerful enough to have several people consuming content at the same time on these kinds of services.

As the hard drives at home were full, and I didn't want to sacrifice my bandwidth, I got a Hetzner Storage Box to store the video content on.

So I've got Radarr, Sonarr and qBitTorrent installed on my computer, where I manage the downloads, upload them to the Storage Box which is then mounted on the server where Jellyfin is installed to serve the content (see the diagram above, the orange part would be a hypothesis for integrating more storage in the future).

Problems :

  • Synchronisation between my local machine and the Hetzner Storage Box: as I was saying, I download everything locally and then upload everything with rclone sync to the storage. The exact command is: rclone sync /mnt/2TB/Jellyfin HetznerBox:/Jellyfin --exclude "*.!qB" --transfers 10 --fast-list --checkers 500 --progress --log-level DEBUG --log-file=/var/log/rclone/rclone-sync-jellyfin.log This has several problems, it's slow, and I have a 1 GB/s fibre connection, and I doubt the problem is with Hetzner... Secondly, if I delete content on the storage server and run the command again, the content will be resynchronised. What's more, it often happens that I run the command and nothing happens for a long time before the synchronisation starts. Thirdly, rclone sync forces me to keep a local copy of everything.
  • rclone mount does not seem to respect the --vfs-cache-max-size: here is the command I use to mount the storage server on the server where Jellyfin is installed rclone mount HetznerBox:/Jellyfin /somepath/Jellyfin/ --vfs-cache-mode full --vfs-cache-max-size 100G --allow-other. But if I run df -h I get /dev/md2 436G 148G 266G 36% / And if I run sudo du -sh Jellyfin/ I get 378G Jellyfin/ The server only has Jellyfin installed, and I don't know how to look precisely how much the vfs cache is using.
  • since Radarr, Sonarr and everything are on my computer, if I install Jellyserr on the same server as Jellyfin (which would be perfect for managing everything when we have several users), it won't be able to communicate with Radarr and Sonarr.

Possible solutions:

  • Don't use my local machine. I'd like to use the Hetzner server for Radarr, Sonarr, qBitTorrent, etc. but the problem is that I don't want to store the data on this server, but on the Storage Box. How can I download directly from one server to another?
  • Could I use Mullvad VPN only for qBitTorrent downloads (and Jackett) on a Hetzner server, or is that too complicated or foolish?

Edit:

Diagram updated to adapt more to my configuration:

image

  • the Hetzner servers are in Finland
  • tried again overnight, rclone mount works fine, just extremely slow
  • downloads of "finished" torrents and those "in progress" are already separated
 

cross-posted from: https://lemmy.cat/post/1793073

MastoBrainz bridges the gap between your music and Mastodon. It harnesses the data from ListenBrainz, a platform that logs and shares your music listening habits, to seamlessly update your Mastodon profile with your currently playing track or the last piece of music you enjoyed.

838
seen on mastodon (mediacdn.aus.social)
 
 

cross-posted from: https://lemmy.cat/post/203000

I bought this PC 5 years ago, today it struggles a bit on some games that require a lot of CPU. The graphics card is doing pretty well.

I'd like to update it, starting with the CPU, and switch to AMD, for better compatibility with Linux and notably to be able to encode videos more easily, I often edit long +4K videos.

Do you have any advice? The aim would be not to change my motherboard. And for the new components to last 5 years too? You can also advise me on graphics cards.

Here's the PC configuration:

  • Processor type: Intel Core i5 9600KF (6 cores - 3.70 Ghz - Turbo 4.60 Ghz - Cache 9 Mo - TDP 95W)
  • CPU cooling model: Be Quiet Dark Rock 4
  • Motherboard model: MSI MAG Z390 Tomahawk
  • Memory size: 16 GB
  • Memory type: DDR4
  • Memory frequency(s): DDR4 2666 MHz
  • RAM brand: Gskill
  • Graphics chipset: NVIDIA GeForce RTX 2070 SUPER
  • Video memory size: 8 GB
  • Graphics card reference: Gigabyte GeForce RTX 2070 SUPER GAMING OC 3X
  • Case format: Medium Tower
  • Case model: Zalman Z7 Neo
  • Power: 550 W
  • Power supply model: Seasonic Focus GX Gold
view more: ‹ prev next ›