Posts Tagged ‘Linux’

Get ID3 tags right on your Cowon S9 with Linux

Those ID3 tags on Cowon can be pesky. Sometimes you do not see the embedded images, sometimes you see things like [11] instead of genres and if you are really unlucky you will not see any tags at all.

So, as a quick hint on how to get all of this right:

  1. Use EasyTAG (can be downloaded using your package manager in most distributions)
  2. In Settings → Preferences go to the ID3Tag settings and do the following
    • Check Automatically convert old ID3v2 tag versions
    • Check Write ID3v2 tag → Version 2.3
    • Uncheck Write ID3v1.x tag
  3. Edit tags of your files, be sure to re-save all files which appear in red in EasyTAG as they have probably different versions of ID3 tags
EasyTAG Cowon settings

A screenshot of the EasyTAG settings window

If you want to use images from the tags instead of the per-folder cover.jpg files you can use EasyTAG to include them in the tags as well. Bear in mind though that only jpeg files will be taken into account and only in mp3 files (no love for ogg users). Also for best effects use images of 272  x 272 pixels large.

Quick access to the last public url of a file in Dropbox

I got bored to search for the url after uploading a file to the Dropbox’s public folder. So I have hacked a quick shell script that takes the public url of the lastest file you uploaded to your public Dropbox folder and copies it to the clipboard. I thought I could share:

#!/bin/sh
DROPBOX="$HOME/Dropbox"

dropbox puburl "$DROPBOX/Public/`ls -1 -t $DROPBOX/Public | head -n 1`" | xclip

Now, on OS X I have a folder action which does the same thing automatically when a new file is uploaded. I will have to tinker with inotify and get it to work on Linux as well.