04-04-2022, 07:09 PM
disable bluetooth = again http site dead ;-)
Thank you for your donation!
Official moOde 8 support thread
|
04-04-2022, 07:09 PM
disable bluetooth = again http site dead ;-)
04-04-2022, 08:52 PM
04-04-2022, 09:21 PM
(04-04-2022, 08:52 PM)jonners Wrote: @Tim Curtis lol, yes indeed it is. I'll go back and edit that post!
04-05-2022, 08:02 AM
(04-04-2022, 09:59 AM)Hello Tim,i attached a picture were you can see that the volume is dropped to 0 (-127db). Problem exist on apple ipad and on Android 11 Smartphone...same problem when rotating. Wrote: I have a Boss 2 but don't recall experiencing the issue you described. I can run some tests today.
04-05-2022, 12:51 PM
(04-05-2022, 08:02 AM)dad33 Wrote:(04-04-2022, 09:59 AM)Hello Tim,i attached a picture were you can see that the volume is dropped to 0 (-127db). Problem exist on apple ipad and on Android 11 Smartphone...same problem when rotating. Wrote: I have a Boss 2 but don't recall experiencing the issue you described. I can run some tests today. Its evident in the screen shot but unless I'm able to repro it with my Boss 2 which as I posted earlier doesn't exhibit this issue, a debug on my end won't be possible. Maybe someone else with a Boss 2 thats doing this has some idea what might be going on.
04-06-2022, 10:08 AM
(This post was last modified: 04-06-2022, 10:57 AM by charlesky.
Edit Reason: additional info
)
'Performer' and 'Conductor' tags appear to be interfering with retrieval of 'Artist' or 'Album Artist' data.
I see there have been a few issues with music tags in the past and heartily agree with @TheOldPresbyope that this whole thing is a dumpster fire with no standards. But right now (release 8.0.2) it appears that any files that have a 'Performer' or 'Conductor' tag defined end up being dumped in the 'Unknown Artist'/'Unknown AlbumArtist' category in tag view. This occurs with all of the choices in the 'Tag view artist' field. My music is stored on a USB drive connected directly to the Pi. If I edit the file tags (using MP3tag 3.14 on a PC), solely remove the 'Performer' or 'Conductor' tag and update the library then the album turns up correctly listed under the relevant artist in tag view. I should note that this is happening on AAC files (with the .m4a extension) that have been tagged using MP3Tag.
04-06-2022, 11:46 AM
Zip up some of the files that have performer/conductor tags and PM the download link to myself and @TheOldPresbyope so we can analyze the files and try to repro.
04-06-2022, 04:53 PM
(04-06-2022, 10:08 AM)charlesky Wrote: 'Performer' and 'Conductor' tags appear to be interfering with retrieval of 'Artist' or 'Album Artist' data. The issue is being caused by having all the performers as a comma separated string stuffed into a single performer tag. Code: pi@sig:~ $ telnet localhost 6600 MPD requires individual tags for each artist, performer, genre, etc https://github.com/MusicPlayerDaemon/MPD...sions/1385 (04-06-2022, 10:08 AM)charlesky Wrote: 'Performer' and 'Conductor' tags appear to be interfering with retrieval of 'Artist' or 'Album Artist' data. Ok, I found the place in the code that is causing this and fixed it. /var/www/inc/playerlib.php controls the way the library handles tags. If a file doesn't have the 'AlbumArtist' tag defined then it tries to construct this by building an array containing the contents of the 'Artist', 'Performer' and 'Conductor' tags (if they are present). This works fine. Unfortunately, it looks like a trap was built in at some point to catch cases in which a file has multiple 'Artist' tags defined - this is certainly undesirable, though not really fatal - and spit them out as 'Unknown AlbumArtist'. This gets tripped when it encounters the Artist/Performer/Conductor array that was accumulated earlier, which certainly looks like an unintended behaviour. The easiest way to fix this is simply to remove the trap. While multiple 'Artist' tags are a bad practice, music tags are such a wild west that it's not unknown, and probably not a good reason to disrupt the way the library is displayed. The problem occurs at line 577 in playerlib.php: Code: 'album_artist' => ($flatData['AlbumArtist'] ? $flatData['AlbumArtist'] : (count($flatData['Artist']) == 1 ? $flatData['Artist'][0] : 'Unknown AlbumArtist')), Code: 'album_artist' => ($flatData['AlbumArtist'] ? $flatData['AlbumArtist'] : ($flatData['Artist'][0] ? $flatData['Artist'][0] : 'Unknown AlbumArtist')), If anyone else is bothered by this behaviour and wants to make such a change feel free to PM me, though it's a slightly tricky process doing it from a Windows PC and needs special tools. [Edit] The same change needs to be made to line 772 since there's a separate function to handle UTF8 encoding.
04-10-2022, 05:49 PM
(04-04-2022, 06:18 AM)dad33 Wrote: Hello community, hello Tim, I was able to catch a repro of this on an Audiophonics 9038 DAC. It looks like after starting up the Hardware mixer which for this particular device s named "Digital" is reporting that it is in the "off" state. Code: pi@kef:~ $ amixer sget Digital Ensuring that it's set to "on" during startup seems to fix the intermittent problem where sound cuts out after changing the volume. Code: amixer sset "Digital" on |
« Next Oldest | Next Newest »
|