GNOME Bugzilla – Bug 773004
Magnatune: Plugin should allow user to select between mp3 / mp3lofi / ogg
Last modified: 2018-05-24 19:12:08 UTC
Currently, the plugin always prefers ogg over other ( mp3 ) formats. This should be left to the user with ogg as the default option. Relevant code ( TrackListHandler.py ) # prefer ogg streams to mp3 if 'oggurl' in self.__track: trackurl = self.__track['oggurl'] else: trackurl = self.__track['url']
(In reply to vrishab from comment #0) > Currently, the plugin always prefers ogg over other ( mp3 ) formats. This > should be left to the user with ogg as the default option. why?
To choose between different bitrates. 1. mp3 ( 128 kbps ) 2. mp3 lofi ( 32 kbps ) 3. ogg vorbis ( 80 kbps ) The only reason ( I think ) magnatune offers 3 bitrates, is to stream the tracks from different networks ( wifi / wired / 3g / 4g etc, some of which might have fluctuating bandwidth )
In magnatune plugin preferences dialog, when "I don't have a Magnatune account" is selected, mp3 / mp3lofi / ogg should be listed in "Preferred audio format" drop down, rather than the high bandwidth formats, which are only available for members. ogg should be the default "Preferred audio format".
-- GitLab Migration Automatic Message -- This bug has been migrated to GNOME's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.gnome.org/GNOME/rhythmbox/issues/1522.