Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

end user trying to get equalizer to work ubuntu 19.10 #30

Open
mimitabby opened this issue Apr 21, 2020 · 7 comments
Open

end user trying to get equalizer to work ubuntu 19.10 #30

mimitabby opened this issue Apr 21, 2020 · 7 comments

Comments

@mimitabby
Copy link

mimitabby commented Apr 21, 2020

IMG-7313
IMG-7314

i have successfully created a plug in folder in Rhythmbox. It has equalizer in it and equalizer has the correct files in that. I tried to run install.sh following directions and while there were no error messages, nothing seemed to happen. I rebooted and then opened Rhythmbox and found the equalizer listed in the plug in list. I then tried to turn it on, but it doesn't turn on. I can toggle the switch, but the circle doesn't turn green and there's an x next to it. I THINK i added a file that shows this. Thanks very much for your help
IMG-7312

@hethhhhh
Copy link

hethhhhh commented May 4, 2020

same problem here

@avenkatakumar
Copy link

There should be one error message when enable to equalizer plugin. when you move the cursor to x it will show the error message. It is missing the dependency 'rb'. 'rb' is python module which is dependent for this plug in. Are you able to find the 'rb.py' module? I am also having the same issue. Missing the 'rb.py' If you found it please share that file.

@burnsaustin145
Copy link

I have the same issure right now on 18

@14kaitou
Copy link

14kaitou commented Dec 13, 2020

for rhythmbox version 3./install.sh --rb3 before that install the dependencies posted at README.
the installation path $HOME/.local/share/rhythmbox/plugins/ (for my prefix) if use sudo it will be in /usr/local/rhythmbox/plugins/ the prefix path not affect anything only separated ~ and / grup directory

@avenkatakumar
Copy link

avenkatakumar commented Dec 16, 2020

for rhythmbox version 3./install.sh --rb3 before that install the dependencies posted at README.
the installation path $HOME/.local/share/rhythmbox/plugins/ (for my prefix) if use sudo it will be in /usr/local/rhythmbox/plugins/ the prefix path not affect anything only separated ~ and / grup directory

I have tried to check the dependencies at README. But I am not able to see any dependencies. Can you please guide me. If you have the link for the dependencies, please post it.

If you are pointing me to rb-open-folder.py code, then if you had chance to see there is an import statement at first which is trying to import module "rb". I am missing with that module.

@cdoersch
Copy link

cdoersch commented Dec 27, 2020

Digging a little deeper into this, launching rhythmbox from the commandline gives the following error when the plugin is enabled:

Traceback (most recent call last):
  File "/usr/lib/python3.8/importlib/__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
  File "<frozen importlib._bootstrap>", line 991, in _find_and_load
  File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 783, in exec_module
  File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
  File "/home/cdoersch/.local/share/rhythmbox/plugins/equalizer/equalizer.py", line 18, in <module>
    from ConfDialog import ConfDialog
  File "/home/cdoersch/.local/share/rhythmbox/plugins/equalizer/ConfDialog.py", line 20, in <module>
    import Conf
  File "/home/cdoersch/.local/share/rhythmbox/plugins/equalizer/Conf.py", line 21, in <module>
    gi.require_version('GConf', '2.0')
  File "/usr/lib/python3/dist-packages/gi/__init__.py", line 129, in require_version
    raise ValueError('Namespace %s not available' % namespace)
ValueError: Namespace GConf not available

(rhythmbox:2635112): libpeas-WARNING **: 00:28:44.478: Error loading plugin 'equalizer'

It seems this plugin uses GConf in order to save its settings, and as of Ubuntu 20.04, GConf has been removed from python. The plugin needs to be rewritten to use something else for persistence (probably Gio). This shouldn't be too hard; I might do it, but would a pull request be accepted at this point?

@HubertGL
Copy link

maybe a little late, but I had just the same problem. I installed libgconf2-dev and then it worked. I am using debian bullseye, but ubuntu should be similar

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants