Skip to main content

Album Art from Google Image Search

I am sort of a perfectionist and when it comes to keeping things cleaned up, I can bet no one can beat me!! My Android phone, Motorola Quench XT3(never heard of it! Yeah, it's an Asia specific product from Motorola) has a nice feature of showing album art for songs, as is there in VLC, the epic product from VideoLAN, WMP, the shitty product from Microsoft Corp (which MS has made less shitty in Windows 7 and more) and the lesser known (among mainstream PC and MAC users Rhythmbox, the default music player featured in Ubuntu, the blue eyed kid of Canonical Inc.).

But for me the turning point was when I can view album arts in my phone while listening to music and it became an absolute necessity that every song I play on my Android must have an apt album art, not the stupid, moronic default album art which Android features,

The default album art of Android

Anyways, I search on the internet for a suitable program which would do this thing for me on my computer that is. The results were not satisfactory, there was virtually no program which would suit my needs. Well, what were my needs,
  1. It should use Google Image Search or The less famous Amazon Product Search.
  2. Should be a small script either standalone or as a plugin to a more popular player.
  3. It should save the album art inside the song folder, so that there is no dependency of the downloaded album art with the 'a' player. 
Days in and out, the search results were negative. Then one day I stumbled upon a plugin for Rhythmbox, one written by a a guy named Rupesh. He used the familiar python language to make a wonderful plugin for rhythmbox. You can get a copy of his original work here. But mind you, it does not work with Rhythmbox 3.x. Rupesh's plugin satisfied 2 or my needs mentioned above. It used Google Image Search for finding the album arts and it was an add on to a popular player. But the sad part was, it didn't saved the images in the song folder, rather in a custom folder, where only rhythmbox would be able to pick up the downloaded images as album arts.

The original screenshot as produced by Rupesh's code


So, I decided to do the dirty work. I started to code alter Rupesh's code to suit my own needs. I could find the place where to put the needed code changes and after 6 hours of coding including understanding the nitty gritty of rhythmbox plugin development, for which I was new. So here I was with a working copy of what I needed with any album art plugin searcher.

But there was one problem. Rupesh's code doesn't work with Rhythmbox 3.x! Now, there's another guy Luqman Ade, an Egyptian who has taken on the onerous task of porting older plugins to the new Rhyhthmbox APIs. You can get his ported plugins at Github or more specifically the album art search plugin. I forked his repository at github to create a local repository and altered the code there. My first commit does specifically that. I changed the location and directed the album art to get saved inside the song folder.

Later today morning, I did my second commit to leave the choice to the user, where he wants to save the album arts. I incorporated both the, the original from Rupesh and my own changes into the master repository. It prompts the user to choose the location and saves the album arts accordingly. I asked Luqman to pull the changes I did and today on 22nd of April he has accepted the changes to be incorporated into master repository.

Once again, just to remind one can download the plugins at github from Luqman's Rhythmbox Plugin Repository.

Comments

Popular posts from this blog

Multimaster replication with Symmetric DS

Symmetric DS is an awesome tool for trigger based replication whcih works for all major database vendors, including but not limited to PostgreSQL, MySQL, MSSQL, Oracle and many others. Symmetric-DS is a java application and can execute on any platform on whcih JRE is available including Windows and Linux. Trigger based replication, in constrast to disk based (eg. DRBD ) or transaction log file shipping based or statement based , works by registering triggers on DMLs and sending the data thus generated to remote machines. Another very popular trigger based DB replication tool is Slony . Symmetric-DS in addition to being database agnostic also supports multi-master replication (MMR). MMR usecase involves multiple database nodes, connected in a pool with DML updates coming from any of them. This is different from the normal master-slave replication, where slaves are not expected to generate any data events, and the sole authority of database is the master. MMR requirement causes d...

Reset root password RHEL/Rocky/CentOS 9

Unlike the earlier versions of Rethat variants, version 9 doesn't allow single user mode to change password, as maintanance mode in 9 requires root password . Single user mode (runlevel 1) can easily be obtained by appending the word ' single ' at the end of the line starting with 'linux' by editing the entry in boot menu by pressing ' e ' at boot menu. To reset the root password on the other hand, one requires to follow a specific set of commands, At the boot menu, edit rescue mode to append 'rd.break ' at the end of the line starting with kernel. Boot with the edited line by pressing Ctrl+X or F10. At the new prompt starting with switch_root, type the following commands, mount -o remount, rw /sysroot chroot /sysroot touch /.autorelabel passwd <new root password> exit reboot       

Devstack installation with cells in multiple machines

  Devstack is a testing and development package for OpenStack . The official devstack website has excellent but terse installation instructions, which could be daunting to a newbie. Normally, a traditional install is pretty straightforward but problems creep in when you have to go for some particular configuration or installation like cells or a simple code-test-debug setup, the information on the main site is insufficient. In this blog, I will enumerate the steps for setting up a cell-ular devstack installation with one parent and one child. Parent will not be instantiating any VMs s it's only a 'command centre'. 1. On both machines, install git and vim, clone the devstack repo using git. yum install git vim git clone https://git.openstack.org/openstack-dev/devstack 2. On both machines, open up the file 'local.conf' inside the cloned directory 'devstack' cd devstack; vim local.conf 3. Copy the parameters below to the file...