Transparency on what Studio is analyzing the library for

I run the analysis only with version 1.0.
I loaded 11K tracks to AS, and after the analysis run all night long the bare showed an important progress, something like 80%. Then the internet connection with the server of Audirvana was lost for some minutes. There was no access to the forum, and AS crushed because the connection was lost.
After the connection with the server of Audirvana was renewed, AS started the analysis a new. It was clear that it was analyzing.

In your case, it seems like a bug since there’s no indication if it’s analyzing or not.

Well, then there’s basically never been any reliable indication at any point that AS is analysing or not, right?

I don’t know for you, as you analyze with V1.3.
For us there was a very clear indication as AS 1.0 added a MacBrainz tag to our tracks.

You can check if something was analyzed by trying to get the bios of the artists. If you get no bios, nothing was analyzed. If you get some bios, some albums were analyzed.

All right. If AS’s analysing means adding some Ā»MacBrainz tagsĀ« to my audio files I begin to appreciate the fact that it probably never succeeded :man_dancing:

You did not understand me.
AS added a tag to the files in version 1.0. We were very upset about it, and Damien changed the behavior of AS. Since v 1.1, it does not write to the files but to its library. But the tag that is added to the library allows AS to display bios of the artists from the servers of Wikipedia.
If you have no bios, nothing was analyzed. If you have some bios, some albums were analyzed.

Also from my side @Antoine : Please implement the possibility to turn the feature off.
Some of my tracks have now cyrillic and greek entries. :sob:

Everybody uses its own way of taging or has the possibility of using the automated way you implemented.

2 Likes

Use Google Translate to find out which track is what… :slight_smile:

Could you explain and detail your mind when you say ā€œto enrich the Studio experienceā€?

Yes. With this tag you get bios for your artists. Unfortunately, this feature is useless, because the fonts are too small and the bio is impossible to read.

In addition, if you stream, Qobuz and Tidal will suggest you to listen to albums and artists that you don’t have in your library.

These are the advantages that you get.

Yes, sometimes i saw bio and recommandations but nothing else.

I’m very confused about this function. I listen a lot of DSD and there is no additonal features. It’s ok only with FLAC.

Could you confirm?

I confirm that many artists do not get a bio. It’s even the case with well known artists such as Pink Floyd!
I don’t think that the bios are related to the format of the files. I have also many DSD tracks, and I got bios for some of their artists, such as Diana Krall.

I do not stream, so I don’t know if the suggestions are really useful for the users who stream.

EDIT
I get bios in French, since my OS is set to French. If your OS is set to English, you may get bios for other artists, because maybe there is no bio in Wiki for a given artist in one language, but there is in an another language.

I’m french. So it’s good for the language…
Bio is very poor for classical.

I have also a lot of classical music, and I get nothing.

Base on my me trying out the studio version, the track is not being modify from your original mp3/flac/dsf, etc. What they doing is adding more information to the album but that information is kept on SQL lite. If you understand a little about database, you can actually organize your playlist. i got sick of tire trying to move bunch file to playlist with so many song that when i select all, move to the playlist but studio crash. i went to the database and start writing my own query. what i did was create a temp table say for all dsf files. I created the playlist call Highdef(in database the id is 5). I query all my music collection and insert to the temp table call temptrackhd, then from temp table the actual playlist table. See my command below. The reason to insert into temp table because i use rowid as unique number. if you understand the database, then you would understand constraint.

CREATE TABLE temptrackhd (

playlist_id INTEGER,
track_id INTEGER
);

INSERT INTO temptrackhd
select 5,track_id
from TRACKS
where file_type in (ā€˜DSF’,ā€˜DSDIFF’,ā€˜SACD ISO’);

insert into PLAYLISTS_TRACKS
select playlist_id,ROWID, track_id from temptrackhd

if you need to know where the database is at, go to c:\Users%username%\AppData\local\Packages\Audirvana***\localCache\ and one of the folder will have a file call AudirvanaDatabase.sqlite. That is where all the data is store for studio. Hope that help.

during the analysis, it update the album and artist table of the database. and man it’s freaking flow. 10 minutes it update 2-3 albums. so imagine if you have 10k albums, it would be months before you are done.

1 Like

You are lucky to understand how the SQL database works. But users should not be computing engineers to use a music player.

If you subscribe for a year, the analysis will end probably before the end of your subscription. :slight_smile:
@Antoine should make this analysis optional for the user to decide if he wants it.

1 Like

i end up not going with subscription. I think its crazy to pay subscription for a music player. i don’t subscribe to tidal and other, so all my music are local on my NAS. compare to jriver, it’s nicer but i don’t want to pay monthly for music i already have locally. i wish i had bought 3.5 before they went with studio.

3 Likes

If you haven’t already, give TuneBrowser a try. It’s a pretty nice music player. And sounds very good.

1 Like

I have TuneBrowser. Though I’m essentially a Mac user, and I use the Mac and its players for playback, I bought for my PC some good players that do not exist on Mac.

Thank you for the file location information. This is not where the AS software claims it to be.

Windows reports that path name back to Audirvana. Windows is to blame here :wink:.
Microsoft decided to obscure the path names for UWP (Universal Windows Platform) apps for whatever reasons. Audirvana is a UWP app. It can be blamed for a lot of things, but not this one :grinning: