What's wrong?
When pressing play/pause there is a (10+ second) delay before a track starts/stops. Similarly, when scrubbing the seek bar there is a delay before the seek actually happens.
Steps to reproduce
Not sure other than install PsySonic and connect it to Navidrome.
What should happen?
There should be no delay.
What actually happens?
There is a delay.
Psysonic version
1.46.0
Operating system
Linux
Install source
AUR — psysonic-bin
Subsonic-compatible server
Navidrome
Server version
Navidrome 1.46.0
Screenshots / video
No response
Anything else
I only just installed Navidrome so maybe I'm missing something but there's no delay when playing from the Navidrome web interface.
This is happening on two different machines, both running Arch Linux. One is is running Gnome, the other KDE.
The interface is perfectly responsive otherwise.
I am proxying Navidrome through Nginx with the following configuration.
server {
listen 80;
server_name navidrome.mydomain.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name navidrome.mydomain.com;
ssl_certificate /etc/letsencrypt/live/navidrome.mydomain.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/navidrome.mydomain.com/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
access_log /var/log/nginx/navidrome-access.log;
error_log /var/log/nginx/navidrome-errors.log error;
location / {
proxy_pass http://localhost:4533;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
What's wrong?
When pressing play/pause there is a (10+ second) delay before a track starts/stops. Similarly, when scrubbing the seek bar there is a delay before the seek actually happens.
Steps to reproduce
Not sure other than install PsySonic and connect it to Navidrome.
What should happen?
There should be no delay.
What actually happens?
There is a delay.
Psysonic version
1.46.0
Operating system
Linux
Install source
AUR — psysonic-bin
Subsonic-compatible server
Navidrome
Server version
Navidrome 1.46.0
Screenshots / video
No response
Anything else
I only just installed Navidrome so maybe I'm missing something but there's no delay when playing from the Navidrome web interface.
This is happening on two different machines, both running Arch Linux. One is is running Gnome, the other KDE.
The interface is perfectly responsive otherwise.
I am proxying Navidrome through Nginx with the following configuration.