You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no setting in the web gui to only be able to get HiFi for cd qual 16/44. I can set it manually if I edit the db and set it to HiFi in the settings table and it works. So look like it just needs to be added to the web settings as a selection.
There is no setting in the web gui to only be able to get HiFi for cd qual 16/44. I can set it manually if I edit the db and set it to HiFi in the settings table and it works. So look like it just needs to be added to the web settings as a selection.
audioQuality = SelectField('audioQuality', choices=[('Normal', 'Normal'), ('High', 'High'), ('Master', 'Master'), ('Max', 'Max')])
class AudioQuality(Enum): Normal = 0 High = 1 HiFi = 2 Master = 3 Max = 4
The text was updated successfully, but these errors were encountered: