Posts: 25
Threads: 2
Joined: Jun 2021
Reputation:
0
(05-08-2025, 02:16 PM)uteroid Wrote: (05-06-2025, 11:43 AM)zbilic Wrote: (05-05-2025, 04:27 PM)uteroid Wrote: (05-05-2025, 04:01 PM)Tim Curtis Wrote: Have you examined the MPD log?
Code: # Print the log as its being written
tail -f /var/log/mpd/log
# Print the log
cat /var/log/mpd/log
I see a buncha entries like below
Code: Consider increasing the value for the 'analyzeduration' (0) and 'probesize' (5000000) options
2025-05-05T11:47:09 ffmpeg: Unsupported libavcodec SampleFormat value: name depth (?)
2025-05-05T11:47:09 update: added NAS/HiRez/Billy Joel/Turnstiles/._08. Miami 2017 (Seen The Lights Go Out On Broadway).flac
2025-05-05T11:47:09 update: added NAS/HiRez/Billy Joel/Billy Joel - 1978 - 52nd Street (MFSL Hybrid SACD 2012)/Billy Joel - 52nd Street MFSL.flac
2025-05-05T11:47:10 ffmpeg/flac: Format flac detected only with low score of 1, misdetection possible!
2025-05-05T11:47:10 ffmpeg/flac: Could not find codec parameters for stream 0 (Audio: flac, 0 channels): unspecified sample format
Consider increasing the value for the 'analyzeduration' (0) and 'probesize' (5000000) options
2025-05-05T11:47:10 ffmpeg: Unsupported libavcodec SampleFormat value: name depth (?)
2025-05-05T11:47:10 update: added NAS/HiRez/Billy Joel/Billy Joel - 1978 - 52nd Street (MFSL Hybrid SACD 2012)/._Billy Joel - 52nd Street MFSL.flac
Hi,
maybe I overlooked it, but I didn't see what network protocol you are using on your NAS? SMB, NFS...?
In the case of SMB, can you check what version it is, and set the appropriate vers=x.y parameter for the Mount options (Advanced section) and optionaly "cache" mode.
You can use nmap scanning to help.
Code: root@moode:~# nmap -p445 --script smb-protocols <RemoteIPAddress>
root@moode:~# nmap -p139 --script smb-protocols <RemoteIPAddress>
This is what I got... It's an older NAS, Buffalo Linkstation
Code: Starting Nmap 7.93 ( https://nmap.org ) at 2025-05-08 10:13 EDT
Nmap scan report for 192.168.0.201
Host is up (0.0064s latency).
PORT STATE SERVICE
445/tcp open microsoft-ds
Host script results:
| smb-protocols:
| dialects:
|_ NT LM 0.12 (SMBv1) [dangerous, but default]
Starting Nmap 7.93 ( https://nmap.org ) at 2025-05-08 10:14 EDT
Nmap scan report for 192.168.0.201
Host is up (0.0064s latency).
PORT STATE SERVICE
139/tcp open netbios-ssn
Host script results:
| smb-protocols:
| dialects:
|_ NT LM 0.12 (SMBv1) [dangerous, but default]
tried adding vers=1.0 didn't fix the issue
Posts: 1,580
Threads: 25
Joined: Jun 2022
Reputation:
55
(05-08-2025, 04:31 PM)uteroid Wrote: (05-08-2025, 02:16 PM)uteroid Wrote: (05-06-2025, 11:43 AM)zbilic Wrote: (05-05-2025, 04:27 PM)uteroid Wrote: (05-05-2025, 04:01 PM)Tim Curtis Wrote: Have you examined the MPD log?
Code: # Print the log as its being written
tail -f /var/log/mpd/log
# Print the log
cat /var/log/mpd/log
I see a buncha entries like below
Code: Consider increasing the value for the 'analyzeduration' (0) and 'probesize' (5000000) options
2025-05-05T11:47:09 ffmpeg: Unsupported libavcodec SampleFormat value: name depth (?)
2025-05-05T11:47:09 update: added NAS/HiRez/Billy Joel/Turnstiles/._08. Miami 2017 (Seen The Lights Go Out On Broadway).flac
2025-05-05T11:47:09 update: added NAS/HiRez/Billy Joel/Billy Joel - 1978 - 52nd Street (MFSL Hybrid SACD 2012)/Billy Joel - 52nd Street MFSL.flac
2025-05-05T11:47:10 ffmpeg/flac: Format flac detected only with low score of 1, misdetection possible!
2025-05-05T11:47:10 ffmpeg/flac: Could not find codec parameters for stream 0 (Audio: flac, 0 channels): unspecified sample format
Consider increasing the value for the 'analyzeduration' (0) and 'probesize' (5000000) options
2025-05-05T11:47:10 ffmpeg: Unsupported libavcodec SampleFormat value: name depth (?)
2025-05-05T11:47:10 update: added NAS/HiRez/Billy Joel/Billy Joel - 1978 - 52nd Street (MFSL Hybrid SACD 2012)/._Billy Joel - 52nd Street MFSL.flac
Hi,
maybe I overlooked it, but I didn't see what network protocol you are using on your NAS? SMB, NFS...?
In the case of SMB, can you check what version it is, and set the appropriate vers=x.y parameter for the Mount options (Advanced section) and optionaly "cache" mode.
You can use nmap scanning to help.
Code: root@moode:~# nmap -p445 --script smb-protocols <RemoteIPAddress>
root@moode:~# nmap -p139 --script smb-protocols <RemoteIPAddress>
This is what I got... It's an older NAS, Buffalo Linkstation
Code: Starting Nmap 7.93 ( https://nmap.org ) at 2025-05-08 10:13 EDT
Nmap scan report for 192.168.0.201
Host is up (0.0064s latency).
PORT STATE SERVICE
445/tcp open microsoft-ds
Host script results:
| smb-protocols:
| dialects:
|_ NT LM 0.12 (SMBv1) [dangerous, but default]
Starting Nmap 7.93 ( https://nmap.org ) at 2025-05-08 10:14 EDT
Nmap scan report for 192.168.0.201
Host is up (0.0064s latency).
PORT STATE SERVICE
139/tcp open netbios-ssn
Host script results:
| smb-protocols:
| dialects:
|_ NT LM 0.12 (SMBv1) [dangerous, but default]
tried adding vers=1.0 didn't fix the issue
You are already using SMB1.0, according to this:
Code: Host script results:
| smb-protocols:
| dialects:
|_ NT LM 0.12 (SMBv1) [dangerous, but default]
|