Showing posts with label Rockbox. Show all posts
Showing posts with label Rockbox. Show all posts

Monday, September 2, 2013

Editing ID3 tags from command line using Python.

You can build a Python module from scratch just to edit ID3 tags, but there is no need to reinvent the wheel since there are many modules ready for this job.I have been using http://id3-py.sourceforge.net which is very straightforward , anyway, here is a little How-to
* Download the module and extract it to any directory you like
* Navigate to the directory where you extracted the module to
cd /ID3/id3-py-1.2
*Install the module
sudo python setup.py install
* If there is no errors , you are ready to go.
download this python script created by the same author ,
http://id3-py.sourceforge.net/ID3/id3-tagger.py
make it executable
chmod  a+x id3-tagger.py
 , you can copy the file to the home directory for an easier access
we are almost done,
here is an example on how to use the file
find ./ -d 1 -name '*.mp3' -exec ~/id3-tagger.py -A 'soundcloud' {} \;

this command will search for any mp3 file in the directory [not recursively] , then will modify the Album tag to soundcloud , you can modify/add different tags to the command as you wish.

Thursday, November 29, 2012

Rockbox on Sansa Disk Clip Zip

After my beloved Ipod classic got stolen , I needed another mp3 player with the following features
efficient but relatively cheap.
  • micro sd card slot to upgrade and swap songs.
  • open source friendly.
  • can handle various media files other than well-known mp3 format.
  • light-weight and portable.
  • doesn't attract much attention such as fancy apple products :/
  • plays well with DRM audiobooks (audible specifically ).
 I purchased the Sandisk clip zip 4 Gb..and I like it so far,but i needed more.So , dual booting with Rockbox was my choice, the installation didn't take much time , failed first at linux pc but it went OK on Windows 7 , i guess it has something to do with the drivers or the usb-mode.
Rockbox is full of features and highly customizable (I need to go thru the 128-page manual to get a full picture of i'm missing so far). what i liked most :
  • plugins such as calculator, alarm , 
  • ability to forward 1-2-5 minutes (not possible on SanDisk OS ).
  • support of all sort of playlists .
  • support of many media format.
  • bookmarks and resume from where left .
  • customizable .cfg files for settings editing on pc (can be transferred via usb to the sansa)