• 2 Posts
  • 16 Comments
Joined 1Y ago
cake
Cake day: Jun 11, 2023

help-circle
rss

Yeah after seeing this and another very detail answer it looks line my settings are too demanding and that is causing a slowdown. Since i do direct playing on everything i might just turn them down for the one friend who seems to be always on the weirdest player that needs transcoding. Thanks all!!


I don’t know where you’ve bought your N100 but i think it shouldn’t be able to do that. I have one too and it cant do even one 4k 10bit HDR transcode.

As i see in the results from the benchmarks we’ve gathered (here: https://gist.github.com/ironicbadger/5da9b321acbe6b6b53070437023b844d), my experience seems to be the common one.

While de N100 is a great value and low energy processor for a jellyfin server (especially if you direct play everything as is my case), I think if the objective is 4k hdr 10bit it will fall short as in my experience it usually transcodes at 8-9fps.


Yes! Usually the ones that come with the media are fine for me but i also have the open subtitles plugin to download extra ones in my language. There are no problems 98% of the time and the other 2% its just that they won’t load and I just have to select/download different ones.


Oh that is an extremely different experience that what I’m having! Chromecast works fine for me and i never have to restart anything and no problems with scrubbing either, just a bit slow on shows with a lot of episodes (300+). I have given my friends access to my server and most of them are using it just fine (sure with some issue now and then, as you said its not perfect). And in iOS with the alternative Swiftfin client the experience feels phenomenal!!


I was just starting to fiddle with the Starr programs so i didn’t realize that the proper way to use it is to sync the torrent clients directly to sonarr and radarr. The issue happened on those programs all the same though. (fixed it already though)


I got it to run, its fairly simple but i am having issues integrating it into the docker compose as it just… stops working… i’ll be looking into it today and tomorrow and if i succeed i’ll report back to you with findings.


yeah, that and other stuff its very hacky. I’ve now done a .env file to keep everything parametrized.


Thats good!! i’m now looking at how to set up caddy to do exactly just just that, then i’ll look at the vpns for outside connections. Thanks gor the advice!


I think you are right! Now that you’ve explained it, it makes sense in my head, as someone else recommended i added hostnames and now i can work with those which makes it nicer, i don´t want to be opening a maze of ports xd


Bingo! This worked. I don’t fully understand why because i expose the ports on the docker containers, i guess i must have something miss-configured. Thanks!!


Version information:

qBit: v4.5.4
prowlarr: 1.7.4.3769

i tried with 127.0.0.1:4666 but i got the same issue


Help needed configuring prowlarr with qBittorrent
Hi all, i'm having issues configuring prowlarr to use the qbit torrent downloader. I have everything setup in a docker container as such: ``` version: "3.2" services: qbittorrent: container_name: qbittorrent image: linuxserver/qbittorrent logging: driver: json-file ports: - 4666:4666 - 8082:6881 - 8082:6881/udp environment: - WEBUI_PORT=4666 volumes: - /docker/appdata/qbittorrent:/config - ./data:/data radarr: container_name: radarr image: cr.hotio.dev/hotio/radarr:latest restart: unless-stopped logging: driver: json-file ports: - 7878:7878 environment: - PUID=1000 - PGID=1000 - TZ=Europe/Amsterdam volumes: - /etc/localtime:/etc/localtime:ro - /docker/appdata/radarr:/config - ./data:/data sonarr: container_name: sonarr image: cr.hotio.dev/hotio/sonarr:latest restart: unless-stopped logging: driver: json-file ports: - 8989:8989 environment: - PUID=1000 - PGID=1000 - TZ=Europe/Amsterdam volumes: - /etc/localtime:/etc/localtime:ro - /docker/appdata/sonarr:/config - /data:/data bazarr: container_name: bazarr image: cr.hotio.dev/hotio/bazarr:latest restart: unless-stopped logging: driver: json-file ports: - 6767:6767 environment: - PUID=1000 - PGID=1000 - TZ=Europe/Amsterdam volumes: - /etc/localtime:/etc/localtime:ro - /docker/appdata/bazarr:/config - ./data/media:/data/media prowlarr: image: cr.hotio.dev/hotio/prowlarr container_name: prowlarr ports: - 9696:9696 environment: - PUID=1000 - PGID=1000 - TZ=Europe/Madrid volumes: - /docker/appdata/prowlarr:/config restart: unless-stopped sabnzbd: container_name: sabnzbd image: cr.hotio.dev/hotio/sabnzbd:latest restart: unless-stopped logging: driver: json-file ports: - 8080:8080 - 9090:9090 environment: - PUID=1000 - PGID=1000 - TZ=Europe/Madrid volumes: - /etc/localtime:/etc/localtime:ro - /docker/appdata/sabnzbd:/config - ./data/usenet:/data/usenet:rw jellyfin: container_name: jellyfin image: linuxserver/jellyfin environment: - PUID=1000 - PGID=1000 - TZ=Europe/Madrid volumes: - /docker/appdata/jellyfin:/config - /etc/localtime:/etc/localtime:ro - ./data/media:/data/media ports: - 8096:8096 - 8920:8290 restart: unless-stopped ``` I can open localhost:4666 in firefox and see the qbit web interface. When i go to the prowlarr interface and try to connect to it the field for the adress goes red and says: unable eto connect tot qBittorrent. The logs say: ``` prowlarr | [v1.7.4.3769] System.Net.Http.HttpRequestException: Connection refused (localhost:4666) prowlarr | ---> System.Net.Sockets.SocketException (111): Connection refused prowlarr | at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ThrowException(SocketError error, CancellationToken cancellationToken) prowlarr | at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 token) prowlarr | at System.Net.Sockets.Socket.g__WaitForConnectWithCancellation|277_0(AwaitableSocketAsyncEventArgs saea, ValueTask connectTask, CancellationToken cancellationToken) prowlarr | at NzbDrone.Common.Http.Dispatchers.ManagedHttpDispatcher.attemptConnection(AddressFamily addressFamily, SocketsHttpConnectionContext context, CancellationToken cancellationToken) in ./Prowlarr.Common/Http/Dispatchers/ManagedHttpDispatcher.cs:line 331 prowlarr | at NzbDrone.Common.Http.Dispatchers.ManagedHttpDispatcher.onConnect(SocketsHttpConnectionContext context, CancellationToken cancellationToken) in ./Prowlarr.Common/Http/Dispatchers/ManagedHttpDispatcher.cs:line 307 prowlarr | at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) prowlarr | --- End of inner exception stack trace --- prowlarr | at System.Net.Http.HttpConnectionPool.ConnectToTcpHostAsync(String host, Int32 port, HttpRequestMessage initialRequest, Boolean async, CancellationToken cancellationToken) prowlarr | at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) prowlarr | at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) prowlarr | at System.Net.Http.HttpConnectionPool.AddHttp11ConnectionAsync(HttpRequestMessage request) prowlarr | at System.Threading.Tasks.TaskCompletionSourceWithCancellation`1.WaitWithCancellationAsync(CancellationToken cancellationToken) prowlarr | at System.Net.Http.HttpConnectionPool.GetHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) prowlarr | at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) prowlarr | at System.Net.Http.AuthenticationHelper.SendWithAuthAsync(HttpRequestMessage request, Uri authUri, Boolean async, ICredentials credentials, Boolean preAuthenticate, Boolean isProxyAuth, Boolean doRequestAuth, HttpConnectionPool pool, CancellationToken cancellationToken) prowlarr | at System.Net.Http.DiagnosticsHandler.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) prowlarr | at System.Net.Http.DecompressionHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) prowlarr | at System.Net.Http.HttpClient.g__Core|83_0(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationTokenSource cts, Boolean disposeCts, CancellationTokenSource pendingRequestsCts, CancellationToken originalCancellationToken) prowlarr | at NzbDrone.Common.Http.Dispatchers.ManagedHttpDispatcher.GetResponseAsync(HttpRequest request, CookieContainer cookies) in ./Prowlarr.Common/Http/Dispatchers/ManagedHttpDispatcher.cs:line 110 prowlarr | at NzbDrone.Common.Http.HttpClient.ExecuteRequestAsync(HttpRequest request, CookieContainer cookieContainer) in ./Prowlarr.Common/Http/HttpClient.cs:line 171 prowlarr | at NzbDrone.Common.Http.HttpClient.ExecuteAsync(HttpRequest request) in ./Prowlarr.Common/Http/HttpClient.cs:line 70 prowlarr | at NzbDrone.Common.Http.HttpClient.Execute(HttpRequest request) in ./Prowlarr.Common/Http/HttpClient.cs:line 137 prowlarr | at NzbDrone.Core.Download.Clients.QBittorrent.QBittorrentProxyV2.IsApiSupported(QBittorrentSettings settings) in ./Prowlarr.Core/Download/Clients/QBittorrent/QBittorrentProxyV2.cs:line 35 prowlarr | at NzbDrone.Core.Download.Clients.QBittorrent.QBittorrentProxySelector.FetchProxy(QBittorrentSettings settings) in ./Prowlarr.Core/Download/Clients/QBittorrent/QBittorrentProxySelector.cs:line 83 prowlarr | at NzbDrone.Core.Download.Clients.QBittorrent.QBittorrentProxySelector.<>c__DisplayClass7_0.b__0() in ./Prowlarr.Core/Download/Clients/QBittorrent/QBittorrentProxySelector.cs:line 78 prowlarr | prowlarr | at NzbDrone.Common.Cache.Cached`1.Get(String key, Func`1 function, Nullable`1 lifeTime) in ./Prowlarr.Common/Cache/Cached.cs:line 99 prowlarr | at NzbDrone.Core.Download.Clients.QBittorrent.QBittorrentProxySelector.GetProxyCache(QBittorrentSettings settings, Boolean force) in ./Prowlarr.Core/Download/Clients/QBittorrent/QBittorrentProxySelector.cs:line 78 prowlarr | prowlarr | at NzbDrone.Core.Download.Clients.QBittorrent.QBittorrentProxySelector.GetProxy(QBittorrentSettings settings, Boolean force) in ./Prowlarr.Core/Download/Clients/QBittorrent/QBittorrentProxySelector.cs:line 61 prowlarr | at NzbDrone.Core.Download.Clients.QBittorrent.QBittorrent.TestConnection() in ./Prowlarr.Core/Download/Clients/QBittorrent/QBittorrent.cs:line 209 prowlarr | prowlarr | prowlarr | prowlarr | [Warn] ProwlarrErrorPipeline: Invalid request Validation failed: prowlarr | -- Host: Unable to connect to qBittorrent ``` I've tried looking for help online but i haven't found much so some help would be appreciated. Thank you!
fedilink

A colleague at work said he was running a Raspberry Pi but in the end had to move to a more powerful system because he needed more power. AFAIK he’s use case is lighter than what i plan so i thought it wasn’t a viable solution. What you describe sounds very nice, especially because of the price of the Pi.

Would love to hear more people’s experiences with this setup.


Thank you for the comprehensive answer! I can see that storage is going to be a big issue here for all the media, I’ve been recommended in this thread to go for a NAS but their low RAM/high cost plus having to use their proprietary software is holding me back. Is a mini PC attached to a HDD enclosure a good solution? Won’t the USB speed be too slow or that isn’t an issue for a media server and the other utilities (I’m more focused on the media server as I am assuming that is the more taxing use case)


My worries with a NAS is their very small RAM (on NAS of reasonable price). When running several docker containers i fear that might be an issue if suddenly several *arr are downloading, pihole, tailgate… all running at the same time might mean that the NAS with 1GB (and t these are already expensive, most I’ve seen more on my budget are half of that) of memory might not be enough (i think).


Looking for recommendations for a mini pc server to start self hosting
With all this migration i’ve been inspired to start self hosting some services. I am looking for a mini pc to ideally run linux and host a media server with radarr and sonarr, pihole and some other stuff as i start getting more into self hosting. Any recommendations / experiences that you can give? Or some general guidelines on what i should look for or things to avoid. Thank you!!
fedilink

for me a reliable one is EZTV. Can’t give you the domain name cause it changes every now and then but i think now its .re