Quod libet plugins(solved)

I downloaded quod libet and I love it,  The only thing is, I wan't to install plugins and I can't figure out how to install plugins.  The website says that you download a python file, and then put it in, ~/.quodlibet/plugins, but plugins is not a folder, but another file.  Am I supposed to copy paste the contents of the python file into plugins?  Someone please explain this to me, as every piece of documentation I've encountered has been vague and inconclusive.

it should be a dir. i think you can delete it and make a dir. Beware that the pythons scripts on de quodlibet site need to be copied into an new document and then be save in de plugin dir as filename.py
Greetinx Atze

Similar Messages

  • [solved] Various MP3s are marked as [invalid encoding] with Quod Libet

    Various MP3s are marked as [invalid encoding] when I attempt to open them in Quod Libet. These same MP3s open fine in VLC. I checked and I have everything related to gstreamer installed: good, bad, ugly, ffmpeg. My thinking is that should do it but it doesn't. The error listed is "Resource not found." But of course Quod Libet does have the correct path to the file. Also, in case this could be related, the files all appear to show raw unicode in the comments tag rather than the comments. LIke so: 000010A3 000010E3 000057E6 000062C2 0004F705 0005B198 00008000 00008000 00005A9C 00005A3F.  Rather than... well I'm not sure what that's supposed to be.
    I checked the wiki on gstreamer but and glanced at Pulse's but Pulse, ALSA, and OSS don't seem to be relevant.
    Last edited by xidar (2012-06-28 21:36:29)

    Yep I went back and looked and it's everything, except one song, that has an "é" and also the bôa album. I'll file a bug report about and call it solved.
    Also, I cleared all the extra tags and the junk text (which was probably a custom tag at  one point) that was in comments and it works. So maybe iTunes screwed up the formatting and Ex Falso took and mangled all of my comments because of it and something to do with unicode.
    Last edited by xidar (2012-06-28 22:01:26)

  • [solved]Quod Libet won't work

    Hi,
    I have reinstalled my archbox yesterday. Then I installed quod libet, but it don't start.
    The start in a terminal gives me this:
    [jean@arch ~]$ quodlibet
    Traceback (most recent call last):
    File "/usr/bin/quodlibet", line 299, in <module>
    util.gtk_init()
    File "/usr/share/quodlibet/util/__init__.py", line 44, in gtk_init
    import gtk
    ImportError: No module named gtk
    What can I do ? Is there any packages missing?
    Thanks for any help.
    Jean-Paul
    Last edited by jean-paul (2007-05-14 18:43:42)

    Yeah, thats realy funny.
    Thanks for help, it works well.
    Fortuna will great again.
    Jean-Paul

  • Password Manager: pass and passff plugin [SOLVED]

    I've installed pass as my password manager. It work just fine.
    I also found a plugin for pass in Firefox called passff (here)
    It installed as advertised and it finds my password-store directory just fine but when I try to log to sites using the plugin I get the error:
    "Please add your passphrase to gpg-agent".
    It almost looks like passff is not talking to gpg.
    If anyone has this working would you mind to share how you solved this problem?
    Last edited by ralvez (2015-06-12 01:40:17)

    Scott,
    Thanks for your help.
    I figured out what happened.
    It seems that, way back, I was experimenting with gnupg and had created a custom set up ( I do not remember having done it, but there is was ) and the S.gpg-agent was in that directory.
    After settings things to the more "standard" way of using gnupg everything is working.
    Thanks again!!
    R.

  • How to release plugin(solve dependency issues)

    I've developed a illustrator plugin dependent on Qt library, it runs well on the develop machine.
    The libOliveLib.dylib is a shared library which developed by Qt.
    Following are the dependencies of the plugin:
    /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa (compatibility version 1.0.0, current version 15.0.0)
    @executable_path/../Frameworks/QtCore.framework/Versions/5/QtCore (compatibility version 5.4.0, current version 5.4.0)
    @executable_path/../Frameworks/QtGui.framework/Versions/5/QtGui (compatibility version 5.4.0, current version 5.4.0)
    @executable_path/../Frameworks/QtWidgets.framework/Versions/5/QtWidgets (compatibility version 5.4.0, current version 5.4.0)
    @executable_path/../Frameworks/QtXml.framework/Versions/5/QtXml (compatibility version 5.4.0, current version 5.4.0)
    @executable_path/../Frameworks/libOliveLib.dylib (compatibility version 0.0.0, current version 0.0.0)
    /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.9.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 125.2.0)
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation (compatibility version 150.0.0, current version 550.29.0)
    /usr/lib/libobjc.A.dylib (compatibility version 1.0.0, current version 227.0.0)
    And the dependencies of libOliveLib:
    @executable_path/../Frameworks/libOliveLib.dylib (compatibility version 0.0.0, current version 0.0.0)
      @executable_path/../Frameworks/QtWidgets.framework/Versions/5/QtWidgets (compatibility version 5.4.0, current version 5.4.0)
      @executable_path/../Frameworks/QtGui.framework/Versions/5/QtGui (compatibility version 5.4.0, current version 5.4.0)
      @executable_path/../Frameworks/QtCore.framework/Versions/5/QtCore (compatibility version 5.4.0, current version 5.4.0)
      /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration (compatibility version 1.0.0, current version 1.0.0)
      /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit (compatibility version 1.0.0, current version 275.0.0)
      @executable_path/../Frameworks/QtXml.framework/Versions/5/QtXml (compatibility version 5.4.0, current version 5.4.0)
      /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL (compatibility version 1.0.0, current version 1.0.0)
      /System/Library/Frameworks/AGL.framework/Versions/A/AGL (compatibility version 1.0.0, current version 1.0.0)
      /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 104.1.0)
      /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1213.0.0)
    But when I deploy it to other machine, it crashed. I think it caused by dependency.
    Any one has this issue before, could you please give me your suggestions or your solutions
    Many hanks!

    Hi LeoTaro,
    Thanks for your response!
    This issue can be solved by adding qt.conf file to folder "/Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Resources".
    But this folder is Application resources folder or Adobe Illustrator, I think add qt.conf file to this folder doesn't make sense.
    Is there any alternative ways?
    I've also tried adding "QCoreApplication::addLibraryPath()" and "QCoreApplication::libraryPaths()", but it doesn't work.
    Best Regards,
    Jae Liu

  • Watching CNN and Yahoo videos with mplayer-plugin [SOLVED]

    I had a hell of a time trying to view CNN videos (http://www.cnn.com) and Yahoo videos with mplayer-plugin (firefox) and didn't seem to find any solutions in a forum search.
    The following worked for me:
    To get it working at all, I had to edit /etc/mplayerplug-in.conf and add/edit the following options:
    noembed=1
    To get smooth video and sound without choppy playback, I had to add/edit the following options to /etc/mplayerplug-in.conf:
    cachesize = 1024
    These value for cachesize will obviously vary depending on your internet connection.  But, with my DSL/broadband connection, the default cachesize of 512 was for some reason resulting in *very* choppy playback.  The cachsize of 1024 fixed everything. 
    I can now view CNN and Yahoo videos with no problem.
    Just thought I'd share if anyone is having similar problems.

    Thanks

  • Anki cannot download shared plugins [Solved]

    I installed anki 1.2.9-2 recently, and I have been unable to download any shared plugins or decks. Below are the errors that I receive.
    Has anyone had this issue and was able to resolve it or has any suggestions?
    Whenever, I click File->Download->Shared Plugin (or Shared Deck), I receive the following traceback:
    File "usr/lib/python2.7/site-packages/ankiqt/ui/getshared.py", line 67, in fetchData
        URL + "search?t=%d&c=1" % self.type)
    File "/usr/lib/python2.7/urllib2.py", line 126, in urlopen
        return _opener.open(url, data, timeout)
    File "/usr/lib/python2.7/urllib2.py", line 394, in open
        response = self._open(req, data)
    File "/usr/lib/python2.7/urllib2.py", line 412, in _open
        '_open', req)
    File "/usr/lib/python2.7/urllib2.py", line 372, in _call_chain
        result = func(*args)
    File "/usr/lib/python2.7/urllib2.py", line 1199, in http_open
        return self.do_open(httplib.HTTPConnection, req)
    File "/usr/lib/python2.7/urllib2.py", line  1174, in do_open
       raise URLError(err)
    URLError: <urlopen error [Errno -2] Name or service not known>
    Whenever I try to sync my Decks with AnkiWeb, I receive the following error:
    There was a connection error. If it persists, please try disabling your firewall software temporarily, or try again from a different network.
    Debugging info: URLError(gaierror(-2, 'Name or service not known'),)
    Edit*
    It turns out the the problem was DNS issue. I'm guessing that the DNS through my ISP did not have the hostnames that are used by anki to download plugins.
    The solution was to append the following nameservers to /etc/resolv.conf:
         nameserver 208.67.222.222
         nameserver 208.67.220.220
    These are OpenDNS name servers.
    Last edited by admasnd1 (2012-01-10 04:28:05)

    I am  completely up to date now, however, I still experience the same issue. In terms of it being a network problem, I have been experiencing another issue that may be related to this one. Whenever I try to ssh into one of my campus's servers, I am unable to connect through the hostname. I always receive the following message:
      Could not resolve hostname .... Name or service not known
    However, if I ssh using the server's ip address, I am able to connect. The same thing occurs whenever I specify the hostname of the campus gateway to vpn. If I give the ip address, it works. Otherwise, same error. When I do establish a vpn tunnel, I am able to ssh through the hostname.
    I thought it might have something to do with ipv6, since I prevent it from autoloading. But I tried enabling the module with modprobe and I still have the same issue, so I'm thinking maybe the anki problem and the hostname problem are  dns issues.
    I don't know much about networking, so I don't know where to go from here. Any suggestions?

  • J2re blackdown not installing, no mozilla plugin [solved]

    I've installed j2re on other distros but I am stuck
    have blackdown 1.4.1_01 gcc3.2
    extracted / installed it to /opt
    created a sym link via mc from the mozilla java plugin to mozilla's plugin folder
    but no plugin shows [except the null plugin]
    what gives?

    The following worked for me...I'm not sure why using mc to create the symlink didn't work, but you may want to try this:
    root@wyvern:~# cd /opt/mozilla/lib/mozilla/plugins
    root@wyvern:/opt/mozilla/lib/mozilla/plugins# rm libjavaplugin_oji.so
    root@wyvern:/opt/mozilla/lib/mozilla/plugins# ln -s /opt/j2sdk/jre/plugin/i386/ns610-gcc32/libjavaplugin_oji.so
    And the plugin shows up and works fine in Mozilla.

  • Abiword plugins [solved]

    I downloaded abiword plugins and aspell (en), and I'm wondering how to install them. mostly aspell, because a spelllcheck would be really useful. my lack of knowledge is mostly where the plugin files are, because it seems like there's an automated tool for adding plugins in the abiword application.
    edit: the solution was that it did it automatically.
    Last edited by TheRedFox (2009-03-26 03:32:51)

    Install the plug-ins with pacman and you don't have to worry about where they go:
    pacman -S abiword-plugins
    If you use aspell, make sure that you install any language files that you need. If you want English for instance:
    pacman -S aspell aspell-en

  • Quod libet keyboard shortcuts/xfce4-mixer

    Can someone suggest some keyboard shortcuts, like to increase/decrease volume, forward/rewind, etc.
    Also, when I start arch, in xfce4-mixer, headphone and pcm levels are zero by default and I need to increase them on every boot. Is there a way to change their default values.
    Last edited by ravisghosh (2007-06-08 15:17:36)

    ravisghosh wrote:Also, when I start arch, in xfce4-mixer, headphone and pcm levels are zero by default and I need to increase them on every boot. Is there a way to change their default values.
    Add alsa to the DAEMONS array of rc.conf

  • [solved] Lost playback of musepack (.mpc)

    Whatever is causing this is very recent, it was working just a few days ago. I can still play musepack files through gstreamer via Quod Libet, but I used to be able to play them through MPD and audacious, too. I remember doing so as recently as a week ago or even less. Clueless as to what could be causing this...

    libmpcdec has been updated recently. Probably said apps need to be rebuilt (gstreamer0.10-musepack and xine-lib had been updated at the same time, that's probably why they decode mpc properly).
    -edit-
    Yeah, I've rebuilt audacious-plugins and now it works as it should. You might want to file a bug on flyspray (if it hasn't been done yet), requesting the rebuild of audio apps capable of decoding mpc.
    Additionally, I noticed that mpc finally supports seeking. Yay.

  • [SOLVED] Playing m4a [MPEG4 AAC] files

    I am having trouble playing an m4a file.  Quod libet say it does not know what to do with them and totem tells me I need to install MPEG4 AAC demuxer plugin.
    I have faad2 and gstreamer0.10-faad installed.  Are these not the right gstreamer components?
    Last edited by Allan (2007-07-07 09:08:55)

    I figured this out finally.  I just had to reinstall gstreamer0.10- good and bad.  Resulted from deleting files to fix the clash described on this post:
    http://bbs.archlinux.org/viewtopic.php?id=34680

  • [SOLVED] Rhythmbox won't play FLAC, wma and m4a files

    The errors it gives:
    For m4a:
    Additional GStreamer plugins are required to play this file: MPEG-4 AAC decoder
    For FLAC:
    The MIME type of this file could not be identified
    For wma:
    Additional GStreamer plugins are required to play this file: Windows Media Audio 8 decoder
    My gstreamer packages installed:
    $yaourt -Qs gstreamer
    ==> Query installed packages
    extra/gstreamer0.10-bad 0.10.19-1 (gstreamer0.10-plugins)
        GStreamer Multimedia Framework Bad Plugin libraries (gst-plugins-bad)
    local/gstreamer0.10-base-git 20100721-1 (gstreamer)
        GStreamer Multimedia Framework Base plugin libraries
    local/gstreamer0.10-git 20100721-1 (gstreamer)
        GStreamer Multimedia Framework
    extra/gstreamer0.10-good 0.10.23-1
        GStreamer Multimedia Framework Good plugin libraries
    extra/gstreamer0.10-good-plugins 0.10.23-1 (gstreamer0.10-plugins)
        GStreamer Multimedia Framework Good Plugins (gst-plugins-good)
    extra/gstreamer0.10-python 0.10.18-1
        Python bindings for GStreamer 0.10
    local/gstreamer0.10-ugly-git 20100721-1 (gstreamer)
        GStreamer Multimedia Framework Ugly plugins
    extra/totem 2.30.2-1 (gnome-extra)
        A GNOME2 integrated movie player based on Gstreamer.
    Thanks, kradle
    UPDATE:
    After installing gstreamer0.10-ffmpeg wma files and FLAC files seem to play fine (but I think the FLAC files I tried to play before were just damaged and that this is irrelevant)
    Only m4a does not work now
    UPDATE:
    m4a after installing gstreamer0.10-bad-plugins.
    At first I did not manage to do this because I had ffmpeg-svn installed, so I installed ffmpeg and removed ffmpeg-svn, installed libvpx and removed libvpx-git and not it works perfectly.
    Last edited by kradle (2010-07-22 03:29:27)

    Obi-Lan wrote:Are you in audio group?
    yup. I ran
    gpasswd -a karam audio
    before running rhythmbox. Actually this seems to be a gstreamer issue as my audio works in most software but i have no playback in rhythmbox or quod libet. well i am going to switch to mpd/sonata and see if i can get that to work. i was never a big fan of rhythmbox anyway as it has no id3 tag editing support.

  • [SOLVED] Game window dims after a few seconds

    I just updated my system and i noticed an annoying issue whenever i launch a game. For instance I tried some of the native games, and i also tried Minecraft for example, and it's the same issue with them all. It doesn't affect anything apart from the window dimming. It dims in the same way as if it was freezing, but it's obviously not freezing as they all play just fine.
    Games run in DOSBox and wine work just fine without any dimming which rules out some things i guess. I'm not getting any warning or error messages in the terminal either.
    Relevant info:
    Arch: x86-64
    WM: Openbox
    Compmgr: Cairo
    Gfx: Nvidia drivers (And my card is GeForce 9600GT)
    Latest Java etc..
    Edit:
    I was looking around in the Cairo settings and i changed color of the 'freeze color' just to rule things out, or so i thought. It turns out Cairo thinks the games freeze for whatever reason and it dims to the freeze color. The thing is, like i said before, the game isn't freezing whatsoever. And there's no option to disable it or change transparency. And i don't wanna resort to shutting down Cairo whenever i want to play some game. I'm sure this might be a bug in the process of being fixed, but does anyone have an idea for a solution?
    Edit II:
    I think i found a solution to my problem. I kinda gave up on the issue, but just now i was looking for plugins for the cairo compmgr, and i saw one called 'Freeze' at the bottom of the ones i had enabled. And so i disabled that plugin and what do ya know.. It seems to have fixed my problem, and googling the issue i also found another thread here on the forums where someone got Xterm to work properly again after disabling the plugin, and i had the same issue, and even though i don't use Xterm, it works as well again.. so bottom line is, disabling the 'Freeze' plugin solved it for me.
    Last edited by waspy (2012-02-22 00:57:48)

    bump

  • Shockwave Flash makes Firefox almost freezing. Disabling solves the problem. Known issue?

    FF 4.0 (and before) is not responding for a very long time (several minutes) on any website almost from the beginning. The more flash videos are shown only as a black field.

    Disabling the Shockwave plugin solves the problem of speed perfectly. But no more chance to view flash videos...

Maybe you are looking for